Skip to content

Commit

Permalink
bugfix: missed namespaces #10
Browse files Browse the repository at this point in the history
  • Loading branch information
psolom committed Nov 2, 2017
1 parent 4f005d9 commit 041e9c7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
use Symfony\Component\HttpFoundation\Request;
use RFM\Repository\StorageInterface;
use RFM\API\ApiInterface;
use function RFM\config;
use function RFM\logger;
use function RFM\request;

// path to "application" folder
defined('FM_APP_PATH') or define('FM_APP_PATH', dirname(__FILE__));
Expand Down Expand Up @@ -429,5 +432,5 @@ public function php_os_is_windows()
public function version()
{
return 'RichFilemanager PHP connector v1.1.2';
}
}
}
2 changes: 2 additions & 0 deletions src/Facade/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace RFM\Facade;

use function RFM\request;

class Input
{
/**
Expand Down
2 changes: 2 additions & 0 deletions src/Facade/Log.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace RFM\Facade;

use function RFM\logger;

class Log
{
/**
Expand Down

0 comments on commit 041e9c7

Please sign in to comment.