Skip to content

Fix autoload in dist #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/composer.json export-ignore
/.travis.yml export-ignore
/.travis export-ignore
/auth.json export-ignore
/tests export-ignore
/auth.json export-ignore
2 changes: 1 addition & 1 deletion tests/Util/MethodLog.php → src/MethodLog.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace IntegerNet\SessionUnblocker\Test\Util;
namespace IntegerNet\SessionUnblocker;

use Magento\TestFramework\Helper\Bootstrap;

Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/SessionStoragePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace IntegerNet\SessionUnblocker\Plugin;

use IntegerNet\SessionUnblocker\Test\Util\MethodLog;
use IntegerNet\SessionUnblocker\MethodLog;
use Magento\Framework\Session\Storage;
use Magento\Framework\Session\StorageInterface;

Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/AbstractSessionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace IntegerNet\SessionUnblocker\Test\Integration;

use IntegerNet\SessionUnblocker\Plugin\SessionStoragePlugin;
use IntegerNet\SessionUnblocker\Test\Util\MethodLog;
use IntegerNet\SessionUnblocker\MethodLog;
use IntegerNet\SessionUnblocker\Test\Util\SectionLoadActionSpy;
use IntegerNet\SessionUnblocker\Test\Util\SessionSpy;
use Magento\Customer\Controller\Section\Load as LoadAction;
Expand Down
1 change: 1 addition & 0 deletions tests/Util/SectionLoadActionSpy.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace IntegerNet\SessionUnblocker\Test\Util;

use IntegerNet\SessionUnblocker\MethodLog;
use Magento\Customer\Controller\Section\Load;

class SectionLoadActionSpy extends Load
Expand Down
1 change: 1 addition & 0 deletions tests/Util/SessionSpy.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

namespace IntegerNet\SessionUnblocker\Test\Util;

use IntegerNet\SessionUnblocker\MethodLog;
use Magento\Framework\Session\Generic;

class SessionSpy extends Generic
Expand Down