Passed
Push — master ( b3c432...89f3f2 )
by vincent
53s
created
src/Traits/Results/ShowTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
 trait ShowTrait
6 6
 {
7 7
 
8
-     /**
9
-     * Get show ID
10
-     * @return int
11
-     */
8
+        /**
9
+         * Get show ID
10
+         * @return int
11
+         */
12 12
     public function getId()
13 13
     {
14 14
         return (int) $this->id;
Please login to merge, or discard this patch.
src/Abstracts/Results.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         $properties = get_object_vars($this);
30 30
         foreach (array_keys($properties) as $property)
31 31
         {
32
-            if ( ! in_array($property, $this->property_blacklist) && ! property_exists($result, $property))
32
+            if (!in_array($property, $this->property_blacklist) && !property_exists($result, $property))
33 33
             {
34 34
                 throw new NotFoundException($property);
35 35
             }
Please login to merge, or discard this patch.