Passed
Branch feature/super-model (24c950)
by axel
02:55
created
src/MalScraper/Model/PeopleModel.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      *
15 15
      * @var string|int
16 16
      */
17
-	private $_id;
17
+    private $_id;
18 18
 
19 19
     /**
20 20
      * Biodata area.
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
      *
32 32
      * @return void
33 33
      */
34
-	public function __construct($id, $parserArea = '#contentWrapper')
34
+    public function __construct($id, $parserArea = '#contentWrapper')
35 35
     {
36
-    	$this->_id = $id;
36
+        $this->_id = $id;
37 37
         $this->_url = $this->_myAnimeListUrl.'/people/'.$id;
38
-    	$this->_parserArea = $parserArea;
38
+        $this->_parserArea = $parserArea;
39 39
 
40 40
         parent::errorCheck($this);
41 41
 
Please login to merge, or discard this patch.
src/MalScraper/Model/CharacterModel.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      *
15 15
      * @var string|int
16 16
      */
17
-	private $_id;
17
+    private $_id;
18 18
 
19 19
     /**
20 20
      * Default constructor.
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
      *
25 25
      * @return void
26 26
      */
27
-	public function __construct($id, $parserArea = '#contentWrapper')
27
+    public function __construct($id, $parserArea = '#contentWrapper')
28 28
     {
29
-    	$this->_id = $id;
29
+        $this->_id = $id;
30 30
         $this->_url = $this->_myAnimeListUrl.'/character/'.$id;
31
-    	$this->_parserArea = $parserArea;
31
+        $this->_parserArea = $parserArea;
32 32
 
33 33
         parent::errorCheck($this);
34 34
     }
Please login to merge, or discard this patch.