Skip to content

Commit 0a54a5c

Browse files
authored
Merge pull request #9 from integer-net/fix-autoload-in-dist
Fix autoload in dist
2 parents 02dd663 + 4edfb55 commit 0a54a5c

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
/composer.json export-ignore
44
/.travis.yml export-ignore
55
/.travis export-ignore
6-
/auth.json export-ignore
6+
/tests export-ignore
7+
/auth.json export-ignore

tests/Util/MethodLog.php renamed to src/MethodLog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace IntegerNet\SessionUnblocker\Test\Util;
4+
namespace IntegerNet\SessionUnblocker;
55

66
use Magento\TestFramework\Helper\Bootstrap;
77

src/Plugin/SessionStoragePlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace IntegerNet\SessionUnblocker\Plugin;
55

6-
use IntegerNet\SessionUnblocker\Test\Util\MethodLog;
6+
use IntegerNet\SessionUnblocker\MethodLog;
77
use Magento\Framework\Session\Storage;
88
use Magento\Framework\Session\StorageInterface;
99

tests/Integration/AbstractSessionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace IntegerNet\SessionUnblocker\Test\Integration;
55

66
use IntegerNet\SessionUnblocker\Plugin\SessionStoragePlugin;
7-
use IntegerNet\SessionUnblocker\Test\Util\MethodLog;
7+
use IntegerNet\SessionUnblocker\MethodLog;
88
use IntegerNet\SessionUnblocker\Test\Util\SectionLoadActionSpy;
99
use IntegerNet\SessionUnblocker\Test\Util\SessionSpy;
1010
use Magento\Customer\Controller\Section\Load as LoadAction;

tests/Util/SectionLoadActionSpy.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
namespace IntegerNet\SessionUnblocker\Test\Util;
55

6+
use IntegerNet\SessionUnblocker\MethodLog;
67
use Magento\Customer\Controller\Section\Load;
78

89
class SectionLoadActionSpy extends Load

tests/Util/SessionSpy.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
namespace IntegerNet\SessionUnblocker\Test\Util;
55

6+
use IntegerNet\SessionUnblocker\MethodLog;
67
use Magento\Framework\Session\Generic;
78

89
class SessionSpy extends Generic

0 commit comments

Comments
 (0)