mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 04:10:38 +02:00
Fix phpDocumentor 3 syntax errors
This commit is contained in:
@@ -10,9 +10,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// e107 v2-style classes
|
// e107 v2-style classes
|
||||||
namespace
|
|
||||||
{
|
|
||||||
class eShims extends \e107\Shims\AllShims
|
class eShims extends \e107\Shims\AllShims
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
|
@@ -87,7 +87,7 @@ abstract class e_file_inspector implements e_file_inspector_interface
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Populate insecureFiles list if deprecatedFiles.log found.
|
* Populate insecureFiles list if deprecatedFiles.log found.
|
||||||
* @return |null
|
* @return void
|
||||||
*/
|
*/
|
||||||
private function checkDeprecatedFilesLog()
|
private function checkDeprecatedFilesLog()
|
||||||
{
|
{
|
||||||
@@ -95,14 +95,14 @@ abstract class e_file_inspector implements e_file_inspector_interface
|
|||||||
|
|
||||||
if(!file_exists($log))
|
if(!file_exists($log))
|
||||||
{
|
{
|
||||||
return null;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$content = file_get_contents($log);
|
$content = file_get_contents($log);
|
||||||
|
|
||||||
if(empty($content))
|
if(empty($content))
|
||||||
{
|
{
|
||||||
return null;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$tmp = explode("\n", $content);
|
$tmp = explode("\n", $content);
|
||||||
|
Reference in New Issue
Block a user