@@ -31,9 +31,9 @@ discard block |
||
31 | 31 | * @param \Aimeos\MW\Config\Iface $config Configuration object |
32 | 32 | * @param string $tempdir Directory for storing temporary files |
33 | 33 | */ |
34 | - public function __construct( \Illuminate\Filesystem\FilesystemManager $fsm, \Aimeos\MW\Config\Iface $config, $tempdir ) |
|
34 | + public function __construct(\Illuminate\Filesystem\FilesystemManager $fsm, \Aimeos\MW\Config\Iface $config, $tempdir) |
|
35 | 35 | { |
36 | - parent::__construct( $config ); |
|
36 | + parent::__construct($config); |
|
37 | 37 | |
38 | 38 | $this->fsm = $fsm; |
39 | 39 | $this->tempdir = $tempdir; |
@@ -47,19 +47,19 @@ discard block |
||
47 | 47 | * @return \Aimeos\MW\Filesystem\Iface File system object |
48 | 48 | * @throws \Aimeos\MW\Filesystem\Exception If an no configuration for that name is found |
49 | 49 | */ |
50 | - public function get( $name ) |
|
50 | + public function get($name) |
|
51 | 51 | { |
52 | - $key = $this->getConfig( $name ); |
|
52 | + $key = $this->getConfig($name); |
|
53 | 53 | |
54 | - if( is_string( $key ) ) |
|
54 | + if (is_string($key)) |
|
55 | 55 | { |
56 | - if( !isset( $this->objects[$key] ) ) { |
|
57 | - $this->objects[$key] = new \Aimeos\MW\Filesystem\Laravel( $this->fsm->disk( $key ), $this->tempdir ); |
|
56 | + if (!isset($this->objects[$key])) { |
|
57 | + $this->objects[$key] = new \Aimeos\MW\Filesystem\Laravel($this->fsm->disk($key), $this->tempdir); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | return $this->objects[$key]; |
61 | 61 | } |
62 | 62 | |
63 | - return parent::get( $name ); |
|
63 | + return parent::get($name); |
|
64 | 64 | } |
65 | 65 | } |
@@ -11,268 +11,268 @@ |
||
11 | 11 | |
12 | 12 | protected function setUp() |
13 | 13 | { |
14 | - if( !interface_exists( '\\Illuminate\\Contracts\\Filesystem\\Filesystem' ) ) { |
|
15 | - $this->markTestSkipped( 'Install Laravel framework first' ); |
|
14 | + if (!interface_exists('\\Illuminate\\Contracts\\Filesystem\\Filesystem')) { |
|
15 | + $this->markTestSkipped('Install Laravel framework first'); |
|
16 | 16 | } |
17 | 17 | |
18 | - $this->mock = $this->getMockBuilder( '\\Illuminate\\Contracts\\Filesystem\\Filesystem' ) |
|
18 | + $this->mock = $this->getMockBuilder('\\Illuminate\\Contracts\\Filesystem\\Filesystem') |
|
19 | 19 | ->disableOriginalConstructor() |
20 | 20 | ->getMock(); |
21 | 21 | |
22 | - $this->object = new \Aimeos\MW\Filesystem\Laravel( $this->mock, sys_get_temp_dir() ); |
|
22 | + $this->object = new \Aimeos\MW\Filesystem\Laravel($this->mock, sys_get_temp_dir()); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
26 | 26 | protected function tearDown() |
27 | 27 | { |
28 | - unset( $this->object ); |
|
28 | + unset($this->object); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | |
32 | 32 | public function testIsdir() |
33 | 33 | { |
34 | - $this->mock->expects( $this->once() )->method( 'directories' ) |
|
35 | - ->will( $this->returnValue( array( 't', 'test', 'es' ) ) ); |
|
34 | + $this->mock->expects($this->once())->method('directories') |
|
35 | + ->will($this->returnValue(array('t', 'test', 'es'))); |
|
36 | 36 | |
37 | - $this->assertTrue( $this->object->isdir( 'test' ) ); |
|
37 | + $this->assertTrue($this->object->isdir('test')); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | |
41 | 41 | public function testIsdirFalse() |
42 | 42 | { |
43 | - $this->mock->expects( $this->once() )->method( 'directories' ) |
|
44 | - ->will( $this->returnValue( array( 't', 'es' ) ) ); |
|
43 | + $this->mock->expects($this->once())->method('directories') |
|
44 | + ->will($this->returnValue(array('t', 'es'))); |
|
45 | 45 | |
46 | - $this->assertFalse( $this->object->isdir( 'test' ) ); |
|
46 | + $this->assertFalse($this->object->isdir('test')); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | |
50 | 50 | public function testMkdir() |
51 | 51 | { |
52 | - $this->mock->expects( $this->once() )->method( 'makeDirectory' ); |
|
52 | + $this->mock->expects($this->once())->method('makeDirectory'); |
|
53 | 53 | |
54 | - $this->object->mkdir( 'test' ); |
|
54 | + $this->object->mkdir('test'); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | |
58 | 58 | public function testRmdir() |
59 | 59 | { |
60 | - $this->mock->expects( $this->once() )->method( 'deleteDirectory' ); |
|
60 | + $this->mock->expects($this->once())->method('deleteDirectory'); |
|
61 | 61 | |
62 | - $this->object->rmdir( 'test' ); |
|
62 | + $this->object->rmdir('test'); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | |
66 | 66 | public function testScan() |
67 | 67 | { |
68 | - $list = array( 't', 'es', 'st' ); |
|
68 | + $list = array('t', 'es', 'st'); |
|
69 | 69 | |
70 | - $this->mock->expects( $this->once() )->method( 'directories' ) |
|
71 | - ->will( $this->returnValue( array( 't', 'es' ) ) ); |
|
70 | + $this->mock->expects($this->once())->method('directories') |
|
71 | + ->will($this->returnValue(array('t', 'es'))); |
|
72 | 72 | |
73 | - $this->mock->expects( $this->once() )->method( 'files' ) |
|
74 | - ->will( $this->returnValue( array( 'st' ) ) ); |
|
73 | + $this->mock->expects($this->once())->method('files') |
|
74 | + ->will($this->returnValue(array('st'))); |
|
75 | 75 | |
76 | 76 | $result = $this->object->scan(); |
77 | 77 | |
78 | - $this->assertInternalType( 'array', $result ); |
|
78 | + $this->assertInternalType('array', $result); |
|
79 | 79 | |
80 | - foreach( $result as $entry ) { |
|
81 | - $this->assertTrue( in_array( $entry, $list ) ); |
|
80 | + foreach ($result as $entry) { |
|
81 | + $this->assertTrue(in_array($entry, $list)); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
85 | 85 | |
86 | 86 | public function testSize() |
87 | 87 | { |
88 | - $this->mock->expects( $this->once() )->method( 'size' ) |
|
89 | - ->will( $this->returnValue( 4 ) ); |
|
88 | + $this->mock->expects($this->once())->method('size') |
|
89 | + ->will($this->returnValue(4)); |
|
90 | 90 | |
91 | - $result = $this->object->size( 'test' ); |
|
91 | + $result = $this->object->size('test'); |
|
92 | 92 | |
93 | - $this->assertEquals( 4, $result ); |
|
93 | + $this->assertEquals(4, $result); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | |
97 | 97 | public function testTime() |
98 | 98 | { |
99 | - $this->mock->expects( $this->once() )->method( 'lastModified' ) |
|
100 | - ->will( $this->returnValue( 1 ) ); |
|
99 | + $this->mock->expects($this->once())->method('lastModified') |
|
100 | + ->will($this->returnValue(1)); |
|
101 | 101 | |
102 | - $result = $this->object->time( 'test' ); |
|
102 | + $result = $this->object->time('test'); |
|
103 | 103 | |
104 | - $this->assertGreaterThan( 0, $result ); |
|
104 | + $this->assertGreaterThan(0, $result); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | |
108 | 108 | public function testRm() |
109 | 109 | { |
110 | - $this->mock->expects( $this->once() )->method( 'delete' ); |
|
110 | + $this->mock->expects($this->once())->method('delete'); |
|
111 | 111 | |
112 | - $this->object->rm( 'test' ); |
|
112 | + $this->object->rm('test'); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | |
116 | 116 | public function testHas() |
117 | 117 | { |
118 | - $this->mock->expects( $this->once() )->method( 'exists' ) |
|
119 | - ->will( $this->returnValue( true ) ); |
|
118 | + $this->mock->expects($this->once())->method('exists') |
|
119 | + ->will($this->returnValue(true)); |
|
120 | 120 | |
121 | - $result = $this->object->has( 'test' ); |
|
121 | + $result = $this->object->has('test'); |
|
122 | 122 | |
123 | - $this->assertTrue( $result ); |
|
123 | + $this->assertTrue($result); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | |
127 | 127 | public function testHasFalse() |
128 | 128 | { |
129 | - $this->mock->expects( $this->once() )->method( 'exists' ) |
|
130 | - ->will( $this->returnValue( false ) ); |
|
129 | + $this->mock->expects($this->once())->method('exists') |
|
130 | + ->will($this->returnValue(false)); |
|
131 | 131 | |
132 | - $result = $this->object->has( 'test' ); |
|
132 | + $result = $this->object->has('test'); |
|
133 | 133 | |
134 | - $this->assertFalse( $result ); |
|
134 | + $this->assertFalse($result); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | |
138 | 138 | public function testRead() |
139 | 139 | { |
140 | - $this->mock->expects( $this->once() )->method( 'get' ) |
|
141 | - ->will( $this->returnValue( 'test' ) ); |
|
140 | + $this->mock->expects($this->once())->method('get') |
|
141 | + ->will($this->returnValue('test')); |
|
142 | 142 | |
143 | - $result = $this->object->read( 'file' ); |
|
143 | + $result = $this->object->read('file'); |
|
144 | 144 | |
145 | - $this->assertEquals( 'test', $result ); |
|
145 | + $this->assertEquals('test', $result); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | |
149 | 149 | public function testReadException() |
150 | 150 | { |
151 | - $this->mock->expects( $this->once() )->method( 'get' ) |
|
152 | - ->will( $this->throwException( new \Exception() ) ); |
|
151 | + $this->mock->expects($this->once())->method('get') |
|
152 | + ->will($this->throwException(new \Exception())); |
|
153 | 153 | |
154 | - $this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' ); |
|
155 | - $this->object->read( 'readinvalid' ); |
|
154 | + $this->setExpectedException('\Aimeos\MW\Filesystem\Exception'); |
|
155 | + $this->object->read('readinvalid'); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | |
159 | 159 | public function testReadf() |
160 | 160 | { |
161 | - $this->mock->expects( $this->once() )->method( 'get' ) |
|
162 | - ->will( $this->returnValue( 'test' ) ); |
|
161 | + $this->mock->expects($this->once())->method('get') |
|
162 | + ->will($this->returnValue('test')); |
|
163 | 163 | |
164 | - $result = $this->object->readf( 'file' ); |
|
164 | + $result = $this->object->readf('file'); |
|
165 | 165 | |
166 | - $this->assertEquals( 'test', file_get_contents( $result ) ); |
|
167 | - unlink( $result ); |
|
166 | + $this->assertEquals('test', file_get_contents($result)); |
|
167 | + unlink($result); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | |
171 | 171 | public function testReads() |
172 | 172 | { |
173 | - $this->mock->expects( $this->once() )->method( 'get' ) |
|
174 | - ->will( $this->returnValue( 'test' ) ); |
|
173 | + $this->mock->expects($this->once())->method('get') |
|
174 | + ->will($this->returnValue('test')); |
|
175 | 175 | |
176 | - $handle = $this->object->reads( 'file' ); |
|
176 | + $handle = $this->object->reads('file'); |
|
177 | 177 | |
178 | - $this->assertInternalType( 'resource', $handle ); |
|
179 | - $this->assertEquals( 'test', fgets( $handle ) ); |
|
178 | + $this->assertInternalType('resource', $handle); |
|
179 | + $this->assertEquals('test', fgets($handle)); |
|
180 | 180 | |
181 | - fclose( $handle ); |
|
181 | + fclose($handle); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | |
185 | 185 | public function testReadsException() |
186 | 186 | { |
187 | - $this->mock->expects( $this->once() )->method( 'get' ) |
|
188 | - ->will( $this->throwException( new \Exception() ) ); |
|
187 | + $this->mock->expects($this->once())->method('get') |
|
188 | + ->will($this->throwException(new \Exception())); |
|
189 | 189 | |
190 | - $this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' ); |
|
191 | - $this->object->reads( 'readinvalid' ); |
|
190 | + $this->setExpectedException('\Aimeos\MW\Filesystem\Exception'); |
|
191 | + $this->object->reads('readinvalid'); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | |
195 | 195 | public function testWrite() |
196 | 196 | { |
197 | - $this->mock->expects( $this->once() )->method( 'put' ); |
|
197 | + $this->mock->expects($this->once())->method('put'); |
|
198 | 198 | |
199 | - $this->object->write( 'file', 'test' ); |
|
199 | + $this->object->write('file', 'test'); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | |
203 | 203 | public function testWriteException() |
204 | 204 | { |
205 | - $this->mock->expects( $this->once() )->method( 'put' ) |
|
206 | - ->will( $this->throwException( new \Exception() ) ); |
|
205 | + $this->mock->expects($this->once())->method('put') |
|
206 | + ->will($this->throwException(new \Exception())); |
|
207 | 207 | |
208 | - $this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' ); |
|
209 | - $this->object->write( '', 'test' ); |
|
208 | + $this->setExpectedException('\Aimeos\MW\Filesystem\Exception'); |
|
209 | + $this->object->write('', 'test'); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | |
213 | 213 | public function testWritef() |
214 | 214 | { |
215 | - $file = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'file99'; |
|
216 | - file_put_contents( $file, 'test' ); |
|
215 | + $file = sys_get_temp_dir().DIRECTORY_SEPARATOR.'file99'; |
|
216 | + file_put_contents($file, 'test'); |
|
217 | 217 | |
218 | - $this->mock->expects( $this->once() )->method( 'put' ); |
|
218 | + $this->mock->expects($this->once())->method('put'); |
|
219 | 219 | |
220 | - $this->object->writef( 'file', $file ); |
|
220 | + $this->object->writef('file', $file); |
|
221 | 221 | |
222 | - unlink( $file ); |
|
222 | + unlink($file); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | |
226 | 226 | public function testWritefException() |
227 | 227 | { |
228 | - $this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' ); |
|
229 | - $this->object->writef( '', 'invalid' ); |
|
228 | + $this->setExpectedException('\Aimeos\MW\Filesystem\Exception'); |
|
229 | + $this->object->writef('', 'invalid'); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
233 | 233 | public function testWrites() |
234 | 234 | { |
235 | - $this->mock->expects( $this->once() )->method( 'put' ); |
|
235 | + $this->mock->expects($this->once())->method('put'); |
|
236 | 236 | |
237 | - $handle = fopen( __FILE__, 'r' ); |
|
237 | + $handle = fopen(__FILE__, 'r'); |
|
238 | 238 | |
239 | - $this->object->writes( 'file', $handle ); |
|
239 | + $this->object->writes('file', $handle); |
|
240 | 240 | |
241 | - fclose( $handle ); |
|
241 | + fclose($handle); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | |
245 | 245 | public function testWritesException() |
246 | 246 | { |
247 | - $this->mock->expects( $this->once() )->method( 'put' ) |
|
248 | - ->will( $this->throwException( new \Exception() ) ); |
|
247 | + $this->mock->expects($this->once())->method('put') |
|
248 | + ->will($this->throwException(new \Exception())); |
|
249 | 249 | |
250 | - $handle = fopen( __FILE__, 'r' ); |
|
250 | + $handle = fopen(__FILE__, 'r'); |
|
251 | 251 | |
252 | - $this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' ); |
|
253 | - $this->object->writes( 'file', $handle ); |
|
252 | + $this->setExpectedException('\Aimeos\MW\Filesystem\Exception'); |
|
253 | + $this->object->writes('file', $handle); |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | |
257 | 257 | public function testWritesException2() |
258 | 258 | { |
259 | - $this->setExpectedException( '\Aimeos\MW\Filesystem\Exception' ); |
|
260 | - $this->object->writes( 'file', null ); |
|
259 | + $this->setExpectedException('\Aimeos\MW\Filesystem\Exception'); |
|
260 | + $this->object->writes('file', null); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | |
264 | 264 | public function testMove() |
265 | 265 | { |
266 | - $this->mock->expects( $this->once() )->method( 'move' ); |
|
266 | + $this->mock->expects($this->once())->method('move'); |
|
267 | 267 | |
268 | - $this->object->move( 'file1', 'file2' ); |
|
268 | + $this->object->move('file1', 'file2'); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | |
272 | 272 | public function testCopy() |
273 | 273 | { |
274 | - $this->mock->expects( $this->once() )->method( 'copy' ); |
|
274 | + $this->mock->expects($this->once())->method('copy'); |
|
275 | 275 | |
276 | - $this->object->copy( 'file1', 'file2' ); |
|
276 | + $this->object->copy('file1', 'file2'); |
|
277 | 277 | } |
278 | 278 | } |
@@ -12,53 +12,53 @@ |
||
12 | 12 | |
13 | 13 | protected function setUp() |
14 | 14 | { |
15 | - if( !class_exists( '\Illuminate\Filesystem\FilesystemManager' ) ) { |
|
16 | - $this->markTestSkipped( 'Install the Laravel framework first' ); |
|
15 | + if (!class_exists('\Illuminate\Filesystem\FilesystemManager')) { |
|
16 | + $this->markTestSkipped('Install the Laravel framework first'); |
|
17 | 17 | } |
18 | 18 | |
19 | - $this->storage = $this->getMockBuilder( '\Illuminate\Filesystem\FilesystemManager' ) |
|
20 | - ->setMethods( array( 'get' ) ) |
|
19 | + $this->storage = $this->getMockBuilder('\Illuminate\Filesystem\FilesystemManager') |
|
20 | + ->setMethods(array('get')) |
|
21 | 21 | ->disableOriginalConstructor() |
22 | 22 | ->getMock(); |
23 | 23 | |
24 | - $this->config = new \Aimeos\MW\Config\PHPArray( array(), array() ); |
|
25 | - $this->object = new \Aimeos\MW\Filesystem\Manager\Laravel( $this->storage, $this->config, sys_get_temp_dir() ); |
|
24 | + $this->config = new \Aimeos\MW\Config\PHPArray(array(), array()); |
|
25 | + $this->object = new \Aimeos\MW\Filesystem\Manager\Laravel($this->storage, $this->config, sys_get_temp_dir()); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
29 | 29 | protected function tearDown() |
30 | 30 | { |
31 | - $this->config->set( 'resource/fs-media', null ); |
|
32 | - $this->config->set( 'resource/fs', null ); |
|
31 | + $this->config->set('resource/fs-media', null); |
|
32 | + $this->config->set('resource/fs', null); |
|
33 | 33 | |
34 | - unset( $this->object, $this->storage ); |
|
34 | + unset($this->object, $this->storage); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
38 | 38 | public function testGet() |
39 | 39 | { |
40 | - $fs = $this->getMockBuilder( 'Illuminate\Contracts\Filesystem\Filesystem' ) |
|
40 | + $fs = $this->getMockBuilder('Illuminate\Contracts\Filesystem\Filesystem') |
|
41 | 41 | ->disableOriginalConstructor() |
42 | 42 | ->getMock(); |
43 | 43 | |
44 | - $this->storage->expects( $this->once() )->method( 'get' ) |
|
45 | - ->will( $this->returnValue( $fs ) ); |
|
44 | + $this->storage->expects($this->once())->method('get') |
|
45 | + ->will($this->returnValue($fs)); |
|
46 | 46 | |
47 | - $this->config->set( 'resource/fs-media', 'local' ); |
|
48 | - $this->assertInstanceof( 'Aimeos\MW\Filesystem\Iface', $this->object->get( 'fs-media' ) ); |
|
47 | + $this->config->set('resource/fs-media', 'local'); |
|
48 | + $this->assertInstanceof('Aimeos\MW\Filesystem\Iface', $this->object->get('fs-media')); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | |
52 | 52 | public function testGetFallback() |
53 | 53 | { |
54 | - $this->config->set( 'resource/fs', array( 'adapter' => 'Standard', 'basedir' => __DIR__ ) ); |
|
55 | - $this->assertInstanceof( 'Aimeos\MW\Filesystem\Iface', $this->object->get( 'fs-media' ) ); |
|
54 | + $this->config->set('resource/fs', array('adapter' => 'Standard', 'basedir' => __DIR__)); |
|
55 | + $this->assertInstanceof('Aimeos\MW\Filesystem\Iface', $this->object->get('fs-media')); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | |
59 | 59 | public function testGetException() |
60 | 60 | { |
61 | - $this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' ); |
|
62 | - $this->object->get( 'fs-media' ); |
|
61 | + $this->setExpectedException('Aimeos\MW\Filesystem\Exception'); |
|
62 | + $this->object->get('fs-media'); |
|
63 | 63 | } |
64 | 64 | } |
@@ -30,9 +30,9 @@ discard block |
||
30 | 30 | * @param \\Aimeos\MW\View\Iface $view View instance with registered view helpers |
31 | 31 | * @param \Illuminate\Http\Request $request Laravel request object |
32 | 32 | */ |
33 | - public function __construct( \Aimeos\MW\View\Iface $view, \Illuminate\Http\Request $request ) |
|
33 | + public function __construct(\Aimeos\MW\View\Iface $view, \Illuminate\Http\Request $request) |
|
34 | 34 | { |
35 | - parent::__construct( $view ); |
|
35 | + parent::__construct($view); |
|
36 | 36 | |
37 | 37 | $this->request = $request; |
38 | 38 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function getTarget() |
80 | 80 | { |
81 | - if( ( $route = $this->request->route() ) !== null ) { |
|
81 | + if (($route = $this->request->route()) !== null) { |
|
82 | 82 | return $route->getName(); |
83 | 83 | } |
84 | 84 | } |
@@ -21,13 +21,13 @@ discard block |
||
21 | 21 | */ |
22 | 22 | protected function setUp() |
23 | 23 | { |
24 | - if( !class_exists( '\\Illuminate\\Http\\Request' ) ) { |
|
25 | - $this->markTestSkipped( '\\Illuminate\\Http\\Request is not available' ); |
|
24 | + if (!class_exists('\\Illuminate\\Http\\Request')) { |
|
25 | + $this->markTestSkipped('\\Illuminate\\Http\\Request is not available'); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | $view = new \Aimeos\MW\View\Standard(); |
29 | - $this->mock = $this->getMock( '\\Illuminate\\Http\\Request' ); |
|
30 | - $this->object = new \Aimeos\MW\View\Helper\Request\Laravel5( $view, $this->mock, array() ); |
|
29 | + $this->mock = $this->getMock('\\Illuminate\\Http\\Request'); |
|
30 | + $this->object = new \Aimeos\MW\View\Helper\Request\Laravel5($view, $this->mock, array()); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | |
@@ -39,39 +39,39 @@ discard block |
||
39 | 39 | */ |
40 | 40 | protected function tearDown() |
41 | 41 | { |
42 | - unset( $this->object, $this->mock ); |
|
42 | + unset($this->object, $this->mock); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | |
46 | 46 | public function testTransform() |
47 | 47 | { |
48 | - $this->assertInstanceOf( '\\Aimeos\\MW\\View\\Helper\\Request\\Laravel5', $this->object->transform() ); |
|
48 | + $this->assertInstanceOf('\\Aimeos\\MW\\View\\Helper\\Request\\Laravel5', $this->object->transform()); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | |
52 | 52 | public function testGetBody() |
53 | 53 | { |
54 | - $this->mock->expects( $this->once() )->method( 'getContent' ) |
|
55 | - ->will( $this->returnValue( 'body' ) ); |
|
54 | + $this->mock->expects($this->once())->method('getContent') |
|
55 | + ->will($this->returnValue('body')); |
|
56 | 56 | |
57 | - $this->assertEquals( 'body', $this->object->transform()->getBody() ); |
|
57 | + $this->assertEquals('body', $this->object->transform()->getBody()); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | |
61 | 61 | public function testGetClientAddress() |
62 | 62 | { |
63 | - $this->mock->expects( $this->once() )->method( 'ip' ) |
|
64 | - ->will( $this->returnValue( '127.0.0.1' ) ); |
|
63 | + $this->mock->expects($this->once())->method('ip') |
|
64 | + ->will($this->returnValue('127.0.0.1')); |
|
65 | 65 | |
66 | - $this->assertEquals( '127.0.0.1', $this->object->transform()->getClientAddress() ); |
|
66 | + $this->assertEquals('127.0.0.1', $this->object->transform()->getClientAddress()); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | |
70 | 70 | public function testGetTarget() |
71 | 71 | { |
72 | - $this->mock->expects( $this->once() )->method( 'route' ) |
|
73 | - ->will( $this->returnValue( null ) ); |
|
72 | + $this->mock->expects($this->once())->method('route') |
|
73 | + ->will($this->returnValue(null)); |
|
74 | 74 | |
75 | - $this->assertEquals( null, $this->object->transform()->getTarget() ); |
|
75 | + $this->assertEquals(null, $this->object->transform()->getTarget()); |
|
76 | 76 | } |
77 | 77 | } |