@@ -22,7 +22,7 @@  | 
                                                    ||
| 22 | 22 | }  | 
                                                        
| 23 | 23 | |
| 24 | 24 | /**  | 
                                                        
| 25 | - * @return \Mockery\MockInterface|FileReader  | 
                                                        |
| 25 | + * @return FileReader  | 
                                                        |
| 26 | 26 | */  | 
                                                        
| 27 | 27 | protected function getFileReader()  | 
                                                        
| 28 | 28 |      { | 
                                                        
@@ -18,7 +18,7 @@  | 
                                                    ||
| 18 | 18 | }  | 
                                                        
| 19 | 19 | |
| 20 | 20 | /**  | 
                                                        
| 21 | - * @return array  | 
                                                        |
| 21 | + * @return string[]  | 
                                                        |
| 22 | 22 | */  | 
                                                        
| 23 | 23 | public function ignoreDataProvide()  | 
                                                        
| 24 | 24 |      { | 
                                                        
@@ -70,9 +70,9 @@  | 
                                                    ||
| 70 | 70 |      { | 
                                                        
| 71 | 71 | return [  | 
                                                        
| 72 | 72 | [  | 
                                                        
| 73 | - [],  | 
                                                        |
| 73 | + [ ],  | 
                                                        |
| 74 | 74 | 'file_valid.php',  | 
                                                        
| 75 | - ],[  | 
                                                        |
| 75 | + ], [  | 
                                                        |
| 76 | 76 | $this->ignoreDataProvide(),  | 
                                                        
| 77 | 77 | 'file_valid.php',  | 
                                                        
| 78 | 78 | ],  | 
                                                        
@@ -25,7 +25,7 @@  | 
                                                    ||
| 25 | 25 | public function read()  | 
                                                        
| 26 | 26 |      { | 
                                                        
| 27 | 27 |          if (false === $this->fileExists()) { | 
                                                        
| 28 | - return [];  | 
                                                        |
| 28 | + return [ ];  | 
                                                        |
| 29 | 29 | }  | 
                                                        
| 30 | 30 | |
| 31 | 31 | return $this->getFileContent();  | 
                                                        
@@ -11,10 +11,10 @@  | 
                                                    ||
| 11 | 11 | */  | 
                                                        
| 12 | 12 | public static function trim(array $contentData)  | 
                                                        
| 13 | 13 |      { | 
                                                        
| 14 | - $data = [];  | 
                                                        |
| 14 | + $data = [ ];  | 
                                                        |
| 15 | 15 | |
| 16 | 16 |          foreach ($contentData as $item) { | 
                                                        
| 17 | - $data[] = trim($item);  | 
                                                        |
| 17 | + $data[ ] = trim($item);  | 
                                                        |
| 18 | 18 | }  | 
                                                        
| 19 | 19 | |
| 20 | 20 | return $data;  |