Skip to content

Commit

Permalink
Merge pull request #24 from nguyenanhung/develop
Browse files Browse the repository at this point in the history
Refactoring
  • Loading branch information
nguyenanhung authored Sep 7, 2020
2 parents 6847c45 + 6f87739 commit 6783074
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion src/Benchmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct()
*
* @var array
*/
public $marker = [];
public $marker = array();

/**
* Set a benchmark marker
Expand Down
18 changes: 9 additions & 9 deletions src/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public function setLoggerLineFormat($loggerLineFormat = NULL)
* @time : 10/6/18 23:35
*
*/
public function log($level = '', $name = 'log', $msg = 'My Message', $context = [])
public function log($level = '', $name = 'log', $msg = 'My Message', $context = array())
{
$level = strtolower(trim($level));
if ($this->DEBUG == TRUE) {
Expand Down Expand Up @@ -411,7 +411,7 @@ public function log($level = '', $name = 'log', $msg = 'My Message', $context =
* @time : 10/6/18 23:33
*
*/
public function debug($name = 'log', $msg = 'My Message', $context = [])
public function debug($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('debug', $name, $msg, $context);
}
Expand All @@ -431,7 +431,7 @@ public function debug($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:33
*
*/
public function info($name = 'log', $msg = 'My Message', $context = [])
public function info($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('info', $name, $msg, $context);
}
Expand All @@ -451,7 +451,7 @@ public function info($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:37
*
*/
public function notice($name = 'log', $msg = 'My Message', $context = [])
public function notice($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('notice', $name, $msg, $context);
}
Expand All @@ -472,7 +472,7 @@ public function notice($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:37
*
*/
public function warning($name = 'log', $msg = 'My Message', $context = [])
public function warning($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('warning', $name, $msg, $context);
}
Expand All @@ -493,7 +493,7 @@ public function warning($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:37
*
*/
public function error($name = 'log', $msg = 'My Message', $context = [])
public function error($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('error', $name, $msg, $context);
}
Expand All @@ -513,7 +513,7 @@ public function error($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:38
*
*/
public function critical($name = 'log', $msg = 'My Message', $context = [])
public function critical($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('critical', $name, $msg, $context);
}
Expand All @@ -534,7 +534,7 @@ public function critical($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:38
*
*/
public function alert($name = 'log', $msg = 'My Message', $context = [])
public function alert($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('alert', $name, $msg, $context);
}
Expand All @@ -554,7 +554,7 @@ public function alert($name = 'log', $msg = 'My Message', $context = [])
* @time : 10/6/18 23:38
*
*/
public function emergency($name = 'log', $msg = 'My Message', $context = [])
public function emergency($name = 'log', $msg = 'My Message', $context = array())
{
return $this->log('emergency', $name, $msg, $context);
}
Expand Down
18 changes: 9 additions & 9 deletions src/DebugInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function setLoggerLineFormat($loggerLineFormat = NULL);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function log($level = '', $name = 'log', $msg = 'My Message', $context = []);
public function log($level = '', $name = 'log', $msg = 'My Message', $context = array());

/**
* Function debug
Expand All @@ -212,7 +212,7 @@ public function log($level = '', $name = 'log', $msg = 'My Message', $context =
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function debug($name = 'log', $msg = 'My Message', $context = []);
public function debug($name = 'log', $msg = 'My Message', $context = array());

/**
* Function info
Expand All @@ -229,7 +229,7 @@ public function debug($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function info($name = 'log', $msg = 'My Message', $context = []);
public function info($name = 'log', $msg = 'My Message', $context = array());

/**
* Function notice
Expand All @@ -246,7 +246,7 @@ public function info($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function notice($name = 'log', $msg = 'My Message', $context = []);
public function notice($name = 'log', $msg = 'My Message', $context = array());

/**
* Function warning
Expand All @@ -264,7 +264,7 @@ public function notice($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function warning($name = 'log', $msg = 'My Message', $context = []);
public function warning($name = 'log', $msg = 'My Message', $context = array());

/**
* Function error
Expand All @@ -282,7 +282,7 @@ public function warning($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function error($name = 'log', $msg = 'My Message', $context = []);
public function error($name = 'log', $msg = 'My Message', $context = array());

/**
* Function critical
Expand All @@ -299,7 +299,7 @@ public function error($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function critical($name = 'log', $msg = 'My Message', $context = []);
public function critical($name = 'log', $msg = 'My Message', $context = array());

/**
* Function alert
Expand All @@ -317,7 +317,7 @@ public function critical($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function alert($name = 'log', $msg = 'My Message', $context = []);
public function alert($name = 'log', $msg = 'My Message', $context = array());

/**
* Function emergency
Expand All @@ -334,5 +334,5 @@ public function alert($name = 'log', $msg = 'My Message', $context = []);
* @return mixed TRUE nếu ghi log thành công, FALSE nếu ghi log thất bại, Message Error nếu có lỗi Exception xảy
* ra, ngoài ra các trường hợp khác sẽ trả về mã Null
*/
public function emergency($name = 'log', $msg = 'My Message', $context = []);
public function emergency($name = 'log', $msg = 'My Message', $context = array());
}
12 changes: 6 additions & 6 deletions src/Manager/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function directoryScanner($path = '', $include = NULL, $exclude = NULL)
* @time : 10/17/18 10:23
*
*/
public function setInclude($include = [])
public function setInclude($include = array())
{
$this->scanInclude = $include;
}
Expand All @@ -112,7 +112,7 @@ public function setInclude($include = [])
* @time : 10/17/18 10:23
*
*/
public function setExclude($exclude = [])
public function setExclude($exclude = array())
{
$this->scanExclude = $exclude;
}
Expand All @@ -132,9 +132,9 @@ public function cleanLog($path = '', $dayToDelete = 3)
{
try {
$getDir = $this->directoryScanner($path, $this->scanInclude, $this->scanExclude);
$result = [];
$result = array();
$result['time'] = date('Y-m-d H:i:s');
$result['listFile'] = [];
$result['listFile'] = array();
foreach ($getDir as $fileName) {
$SplFileInfo = new SplFileInfo($fileName);
$filename = $SplFileInfo->getPathname();
Expand Down Expand Up @@ -223,12 +223,12 @@ public function scanAndZip($scanPath = '', $dayToZip = 3, $zipPath = '')
$format = 'YmdHis';
$dateTime = new DateTime("-" . $dayToZip . " days");
$zipTime = $dateTime->format($format);
$result = [];
$result = array();
$result['time'] = date('Y-m-d H:i:s');
$result['timeToZip'] = $dateTime->format('Y-m-d H:i:s');
$result['zipPath'] = $zipPath;
$result['zipFilePath'] = $zipPathFilename;
$result['listFile'] = [];
$result['listFile'] = array();
foreach ($getDir as $fileName) {
$SplFileInfo = new SplFileInfo($fileName);
$filename = $SplFileInfo->getPathname();
Expand Down
8 changes: 4 additions & 4 deletions src/ProjectInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
*/
interface ProjectInterface
{
const VERSION = '1.0.4';
const VERSION = '1.0.5';

/**
* Hàm lấy thông tin phiên bản Packages
*
* @return string Phiên bản hiện tại của Packages, VD: 0.1.1
* @author: 713uk13m <[email protected]>
* @time : 9/27/18 18:32
*
* @author : 713uk13m <[email protected]>
* @copyright: 713uk13m <[email protected]>
* @time : 9/27/18 18:32
*/
public function getVersion();
}
4 changes: 2 additions & 2 deletions src/Repository/DataRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static function getData($configName)
return require $path;
}

return [];
return array();
}

/**
Expand All @@ -62,6 +62,6 @@ public static function getDataContent($filename)
return require $filename;
}

return [];
return array();
}
}

0 comments on commit 6783074

Please sign in to comment.