Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Tokenization improvement by excluding runtime directory
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy-j committed Mar 3, 2016
1 parent 4043c12 commit 816d095
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion app/classes/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
namespace Controllers;

use Controllers\Nested\SayController;
use Database\Sample;
use Spiral\Core\Controller;
use Spiral\Encrypter\EncrypterInterface;
use Spiral\Session\SessionInterface;
Expand Down
7 changes: 4 additions & 3 deletions app/config/tokenizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
*/
'directories' => [
directory('application'),
directory('libraries') . '/spiral/framework',
directory('libraries') . '/spiral/components',
directory('libraries') . 'spiral/framework',
directory('libraries') . 'spiral/components',
directory('libraries') . 'spiral/scaffolder',
/*{{directories}}*/
],
Expand All @@ -22,7 +22,8 @@
*/
'exclude' => [
'vendor',
'tests'
'tests',
'runtime'
/*{{exclude}}*/
]
];

0 comments on commit 816d095

Please sign in to comment.