Skip to content

Commit b923605

Browse files
committed
Make CS happy
1 parent 926447c commit b923605

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,12 @@
6161
"scripts": {
6262
"check": [
6363
"@cs",
64-
"@test"
64+
"@test",
65+
"@docheader"
6566
],
6667
"cs": "php-cs-fixer fix -v --diff --dry-run",
6768
"cs-fix": "php-cs-fixer fix -v --diff",
69+
"docheader": "docheader check src/ tests/",
6870
"test": "phpunit"
6971
}
7072
}

src/CallbackSerializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/**
33
* This file is part of the prooph/snapshot-store.
4-
* (c) 2016-2017 prooph software GmbH <[email protected]>
5-
* (c) 2016-2017 Sascha-Oliver Prolic <[email protected]>
4+
* (c) 2017-2017 prooph software GmbH <[email protected]>
5+
* (c) 2017-2017 Sascha-Oliver Prolic <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.

src/Container/CompositeSnapshotStoreFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/**
33
* This file is part of the prooph/snapshot-store.
4-
* (c) 2016-2017 prooph software GmbH <[email protected]>
5-
* (c) 2016-2017 Sascha-Oliver Prolic <[email protected]>
4+
* (c) 2017-2017 prooph software GmbH <[email protected]>
5+
* (c) 2017-2017 Sascha-Oliver Prolic <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.

src/Serializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/**
33
* This file is part of the prooph/snapshot-store.
4-
* (c) 2016-2017 prooph software GmbH <[email protected]>
5-
* (c) 2016-2017 Sascha-Oliver Prolic <[email protected]>
4+
* (c) 2017-2017 prooph software GmbH <[email protected]>
5+
* (c) 2017-2017 Sascha-Oliver Prolic <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.

tests/Container/CompositeSnapshotStoreFactoryTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* This file is part of the prooph/memcached-snapshot-store.
3+
* This file is part of the prooph/snapshot-store.
44
* (c) 2017-2017 prooph software GmbH <[email protected]>
55
* (c) 2017-2017 Sascha-Oliver Prolic <[email protected]>
66
*
@@ -12,7 +12,6 @@
1212

1313
namespace ProophTest\SnapshotStore\Container;
1414

15-
use Memcached;
1615
use PHPUnit\Framework\TestCase;
1716
use Prooph\SnapshotStore\CompositeSnapshotStore;
1817
use Prooph\SnapshotStore\Container\CompositeSnapshotStoreFactory;

0 commit comments

Comments
 (0)