1
0
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:
Nick Liu
2020-10-06 01:15:51 -05:00
parent 80f0899771
commit 3587075b96
2 changed files with 4 additions and 7 deletions

View File

@@ -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
{ {
} }
}

View File

@@ -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);