Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Simplify path extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
ravage84 committed Apr 3, 2019
1 parent 21e9156 commit 52f73ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
$loader->setPsr4('Burzum\Imagine\\', './vendor/burzum/cakephp-imagine-plugin/src');

Plugin::load('Burzum/FileStorage', [
'path' => dirname(dirname(__FILE__)) . DS,
'path' => dirname(__FILE__, 2) . DS,
//'autoload' => true,
//'bootstrap' => true
]);

Plugin::load('Burzum/Imagine', [
'path' => dirname(dirname(__FILE__)) . DS,
'path' => dirname(__FILE__, 2) . DS,
'autoload' => true,
'bootstrap' => true
]);

0 comments on commit 52f73ef

Please sign in to comment.