Completed
Push — master ( 6c04ca...a08b36 )
by Phil
08:12
created
src/Entity/AbstractEntity.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Percy\Entity;
4 4
 
5 5
 use InvalidArgumentException;
6
-use RuntimeException;
7 6
 use Percy\Store\StoreInterface;
8 7
 
9 8
 abstract class AbstractEntity implements EntityInterface
Please login to merge, or discard this patch.
src/Store/AbstractStore.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      * @param \Percy\Entity\Collection $collection
16 16
      * @param integer                  $action
17 17
      *
18
-     * @return boolean
18
+     * @return boolean|null
19 19
      */
20 20
     protected function decorate(Collection $collection, $action)
21 21
     {
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Iterate collection and validate data.
51 51
      *
52
-     * @param \Percy\EntityCollection $collection
52
+     * @param Collection $collection
53 53
      *
54
-     * @return boolean
54
+     * @return boolean|null
55 55
      */
56 56
     public function validate(Collection $collection)
57 57
     {
Please login to merge, or discard this patch.