Passed
Push — feature/super-model ( 6844b5...0f230d )
by axel
02:12
created
src/MalScraper/Model/Top/TopModel.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      *
23 23
      * @var string
24 24
      */
25
-	private $_type;
25
+    private $_type;
26 26
 
27 27
     /**
28 28
      * Page number
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @return void
42 42
      */
43
-	public function __construct($supertype, $type, $page, $parserArea = '#content')
43
+    public function __construct($supertype, $type, $page, $parserArea = '#content')
44 44
     {
45 45
         $this->_supertype = $supertype;
46 46
         $this->_page = 50 * ($page - 1);
@@ -193,11 +193,11 @@  discard block
 block discarded – undo
193 193
         return trim(str_replace('N/A', '', $score));
194 194
     }
195 195
 
196
-     /**
197
-     * Get result list.
198
-     *
199
-     * @return array
200
-     */
196
+        /**
197
+         * Get result list.
198
+         *
199
+         * @return array
200
+         */
201 201
     private function getAllInfo()
202 202
     {
203 203
         $data = [];
Please login to merge, or discard this patch.
src/MalScraper/Model/Seasonal/SeasonModel.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 $_year;
18
+    private $_year;
19 19
 
20 20
     /**
21 21
      * Season name. Either spring, summer, fall, or winter.
@@ -33,12 +33,12 @@  discard block
 block discarded – undo
33 33
      *
34 34
      * @return void
35 35
      */
36
-	public function __construct($year = false, $season = false, $parserArea = '#content .js-categories-seasonal')
36
+    public function __construct($year = false, $season = false, $parserArea = '#content .js-categories-seasonal')
37 37
     {
38 38
         $this->_year = !$year ? date('Y') : $year;
39
-    	$this->_season = !$season ? Helper::getCurrentSeason() : $season;
39
+        $this->_season = !$season ? Helper::getCurrentSeason() : $season;
40 40
         $this->_url = $this->_myAnimeListUrl.'/anime/season/'.$this->_year.'/'.$this->_season;
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.