Skip to content

Commit 5e7c3fd

Browse files
committed
Merge branch '3.4' into 4.1
* 3.4: fixed CS fixed short array CS in comments fixed CS in ExpressionLanguage fixtures fixed CS in generated files fixed CS on generated container files fixed CS on Form PHP templates fixed CS on YAML fixtures fixed fixtures switched array() to []
2 parents 9c10a20 + b52454e commit 5e7c3fd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Tests/FilesystemTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class FilesystemTestCase extends TestCase
1818
{
1919
private $umask;
2020

21-
protected $longPathNamesWindows = array();
21+
protected $longPathNamesWindows = [];
2222

2323
/**
2424
* @var \Symfony\Component\Filesystem\Filesystem
@@ -84,7 +84,7 @@ protected function tearDown()
8484
foreach ($this->longPathNamesWindows as $path) {
8585
exec('DEL '.$path);
8686
}
87-
$this->longPathNamesWindows = array();
87+
$this->longPathNamesWindows = [];
8888
}
8989

9090
$this->filesystem->remove($this->workspace);

Tests/Fixtures/MockStream/MockStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ public function stream_open($path, $mode, $options, &$opened_path)
4141
*/
4242
public function url_stat($path, $flags)
4343
{
44-
return array();
44+
return [];
4545
}
4646
}

0 commit comments

Comments
 (0)