Skip to content

Commit 9a8e42b

Browse files
fixed missing spaces in declare statement
1 parent 26213bb commit 9a8e42b

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/ConfigProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace Tobias\Zend\Expressive\Zf1Session;
66

src/Persistence/SessionPersistence.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace Tobias\Zend\Expressive\Zf1Session\Persistence;
66

src/Persistence/SessionPersistenceFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace Tobias\Zend\Expressive\Zf1Session\Persistence;
66

src/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace Tobias\Zend\Expressive\Zf1Session;
66

tests/ConfigProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace TobiasTest\Expressive\Zf1Session;
66

tests/Persistence/SessionPersistenceFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace TobiasTest\Expressive\Zf1Session\Persistence;
66

tests/Persistence/SessionPersistenceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace TobiasTest\Expressive\Zf1Session\Persistence;
66

tests/SessionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
namespace TobiasTest\Expressive\Zf1Session;
66

0 commit comments

Comments
 (0)