Skip to content

Commit 5d598fa

Browse files
committed
Merge branch '3.2'
* 3.2: (40 commits) fixed CS fixed CS fixed CS fixer config fixed typo Revert "fixed typo" fixed typo fixed CS Avoid setting request attributes from signature arguments in AnnotationClassLoader [DependencyInjection] Add some missing typehints in YamlFileLoader [DependencyInjection] minor: Fix a DocBlock [HttpKernel] Give higher priority to adding request formats [Cache] Fix tags expiration [PhpUnit] Blacklist DeprecationErrorHandler in stack traces [PropertyInfo] Don't try to access a property thru a static method [PropertyInfo] Exclude static methods form properties guessing [Workflow] Added new validator to make sure each place has unique translation names [Cache] [PdoAdapter] Fix MySQL 1170 error (blob as primary key) [FrameworkBundle] Fix third level headers for MarkdownDescriptor [Ldap] Using Ldap stored username instead of form submitted one [Ldap] load users with the good username case ...
2 parents 2bf1092 + ca032cc commit 5d598fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Dumper/FileDumperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function testDump()
2626
$dumper = new ConcreteFileDumper();
2727
$dumper->dump($catalogue, array('path' => $tempDir));
2828

29-
$this->assertTrue(file_exists($tempDir.'/messages.en.concrete'));
29+
$this->assertFileExists($tempDir.'/messages.en.concrete');
3030
}
3131

3232
/**

Util/ArrayConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private static function &getElementByPath(array &$tree, array $parts)
6262
* $tree['foo'] was string before we found array {bar: test2}.
6363
* Treat new element as string too, e.g. add $tree['foo.bar'] = 'test2';
6464
*/
65-
$elem = &$elem[ implode('.', array_slice($parts, $i)) ];
65+
$elem = &$elem[implode('.', array_slice($parts, $i))];
6666
break;
6767
}
6868
$parentOfElem = &$elem;

0 commit comments

Comments
 (0)