Passed
Push — feature/super-model ( c51526...6844b5 )
by axel
03:18
created
src/MalScraper/Model/Search/SearchUserModel.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
      *
34 34
      * @return void
35 35
      */
36
-	public function __construct($query, $page, $parserArea = '#content')
36
+    public function __construct($query, $page, $parserArea = '#content')
37 37
     {
38
-    	$this->_query = $query;
38
+        $this->_query = $query;
39 39
         $this->_page = 24 * ($page - 1);
40 40
         $this->_url = $this->_myAnimeListUrl.'/users.php?q='.$query.'&show='.$this->_page;
41
-    	$this->_parserArea = $parserArea;
41
+        $this->_parserArea = $parserArea;
42 42
 
43 43
         parent::errorCheck($this);
44 44
     }
Please login to merge, or discard this patch.
src/MalScraper/Model/Search/SearchCharacterPeopleModel.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      *
16 16
      * @var string
17 17
      */
18
-	private $_type;
18
+    private $_type;
19 19
 
20 20
     /**
21 21
      * Search query.
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
      *
42 42
      * @return void
43 43
      */
44
-	public function __construct($type, $query, $page, $parserArea = '#content')
44
+    public function __construct($type, $query, $page, $parserArea = '#content')
45 45
     {
46 46
         $this->_type = $type;
47
-    	$this->_query = $query;
47
+        $this->_query = $query;
48 48
         $this->_page = 50 * ($page - 1);
49 49
 
50 50
         if ($type == 'character') {
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         } else {
53 53
             $this->_url = $this->_myAnimeListUrl.'/people.php?q='.$query.'&show='.$this->_page;
54 54
         }
55
-    	$this->_parserArea = $parserArea;
55
+        $this->_parserArea = $parserArea;
56 56
 
57 57
         parent::errorCheck($this);
58 58
     }
Please login to merge, or discard this patch.