Passed
Push — master ( 1ac390...22382b )
by DeGracia
02:33
created
src/Criteria.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
 class Criteria {
8 8
 
9 9
     protected $name;
10
-	protected $dictionary;
11
-	protected $occurrence;
10
+    protected $dictionary;
11
+    protected $occurrence;
12 12
 
13 13
     public function __construct($name, Contracts\Dictionary $dictionary, Contracts\Occurrence $occurrence)
14 14
     {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     public function setName($name)
26 26
     {
27 27
         if (! $name) {
28
-             $name = $this->dictionary->getName() . '_' . $this->occurrence->getName();
28
+                $name = $this->dictionary->getName() . '_' . $this->occurrence->getName();
29 29
         }
30 30
 
31 31
         return $this->name = $name;
Please login to merge, or discard this patch.