@@ -126,7 +126,9 @@ public function testFolders()
126126 $ helper ->shouldReceive ('getThumbFolderName ' )->andReturn ('thumbs ' );
127127 $ helper ->shouldReceive ('isRunningOnWindows ' )->andReturn (false );
128128 $ helper ->shouldReceive ('ds ' )->andReturn ('/ ' );
129- $ helper ->shouldReceive ('config ' )->with ('item_columns ' )->andReturn (['name ' , 'url ' , 'time ' , 'icon ' , 'is_file ' , 'is_image ' , 'thumb_url ' ]);
129+ $ helper ->shouldReceive ('config ' )
130+ ->with ('item_columns ' )
131+ ->andReturn (['name ' , 'url ' , 'time ' , 'icon ' , 'is_file ' , 'is_image ' , 'thumb_url ' ]);
130132
131133 $ path = new LfmPath ($ helper );
132134
@@ -146,7 +148,9 @@ public function testFiles()
146148 $ helper ->shouldReceive ('getNameFromPath ' )->andReturn ('bar ' );
147149 $ helper ->shouldReceive ('isRunningOnWindows ' )->andReturn (false );
148150 $ helper ->shouldReceive ('ds ' )->andReturn ('/ ' );
149- $ helper ->shouldReceive ('config ' )->with ('item_columns ' )->andReturn (['name ' , 'url ' , 'time ' , 'icon ' , 'is_file ' , 'is_image ' , 'thumb_url ' ]);
151+ $ helper ->shouldReceive ('config ' )
152+ ->with ('item_columns ' )
153+ ->andReturn (['name ' , 'url ' , 'time ' , 'icon ' , 'is_file ' , 'is_image ' , 'thumb_url ' ]);
150154
151155 $ path = new LfmPath ($ helper );
152156
@@ -158,7 +162,9 @@ public function testPretty()
158162 $ helper = m::mock (Lfm::class);
159163 $ helper ->shouldReceive ('getNameFromPath ' )->andReturn ('bar ' );
160164 $ helper ->shouldReceive ('isRunningOnWindows ' )->andReturn (false );
161- $ helper ->shouldReceive ('config ' )->with ('item_columns ' )->andReturn (['name ' , 'url ' , 'time ' , 'icon ' , 'is_file ' , 'is_image ' , 'thumb_url ' ]);
165+ $ helper ->shouldReceive ('config ' )
166+ ->with ('item_columns ' )
167+ ->andReturn (['name ' , 'url ' , 'time ' , 'icon ' , 'is_file ' , 'is_image ' , 'thumb_url ' ]);
162168
163169 $ path = new LfmPath ($ helper );
164170
0 commit comments