1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +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
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.
* @return |null
* @return void
*/
private function checkDeprecatedFilesLog()
{
@@ -95,14 +95,14 @@ abstract class e_file_inspector implements e_file_inspector_interface
if(!file_exists($log))
{
return null;
return;
}
$content = file_get_contents($log);
if(empty($content))
{
return null;
return;
}
$tmp = explode("\n", $content);