File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ private function formatConfigs(array $array)
184
184
$ string = '' ;
185
185
ksort ($ array );
186
186
foreach ($ array as $ name => $ value ) {
187
- $ string .= ($ string ? "\n" . str_repeat (' ' , 13 ) : '' ) . $ name . ': ' . $ this ->formatValue ($ value );
187
+ $ string .= ($ string ? "\n" . str_repeat (' ' , 13 ) : '' ). $ name. ': ' . $ this ->formatValue ($ value );
188
188
}
189
189
190
190
return $ string ;
Original file line number Diff line number Diff line change 21
21
* @author: Albert Jessurum <ajessu@gmail.com>
22
22
*/
23
23
24
- if (is_file ($ _SERVER ['DOCUMENT_ROOT ' ] . DIRECTORY_SEPARATOR . $ _SERVER ['SCRIPT_NAME ' ])) {
24
+ if (is_file ($ _SERVER ['DOCUMENT_ROOT ' ]. DIRECTORY_SEPARATOR . $ _SERVER ['SCRIPT_NAME ' ])) {
25
25
return false ;
26
26
}
27
27
28
- $ _SERVER ['SCRIPT_FILENAME ' ] = $ _SERVER ['DOCUMENT_ROOT ' ] . DIRECTORY_SEPARATOR . 'app_dev.php ' ;
28
+ $ _SERVER ['SCRIPT_FILENAME ' ] = $ _SERVER ['DOCUMENT_ROOT ' ]. DIRECTORY_SEPARATOR . 'app_dev.php ' ;
29
29
30
30
require 'app_dev.php ' ;
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ protected function getExtensions()
47
47
// should be moved to the Form component once absolute file paths are supported
48
48
// by the default name parser in the Templating component
49
49
$ reflClass = new \ReflectionClass ('Symfony\Bundle\FrameworkBundle\FrameworkBundle ' );
50
- $ root = realpath (dirname ($ reflClass ->getFileName ()) . '/Resources/views ' );
50
+ $ root = realpath (dirname ($ reflClass ->getFileName ()). '/Resources/views ' );
51
51
$ rootTheme = realpath (__DIR__ .'/Resources ' );
52
52
$ templateNameParser = new StubTemplateNameParser ($ root , $ rootTheme );
53
53
$ loader = new FilesystemLoader (array ());
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ protected function getExtensions()
47
47
// should be moved to the Form component once absolute file paths are supported
48
48
// by the default name parser in the Templating component
49
49
$ reflClass = new \ReflectionClass ('Symfony\Bundle\FrameworkBundle\FrameworkBundle ' );
50
- $ root = realpath (dirname ($ reflClass ->getFileName ()) . '/Resources/views ' );
50
+ $ root = realpath (dirname ($ reflClass ->getFileName ()). '/Resources/views ' );
51
51
$ rootTheme = realpath (__DIR__ .'/Resources ' );
52
52
$ templateNameParser = new StubTemplateNameParser ($ root , $ rootTheme );
53
53
$ loader = new FilesystemLoader (array ());
You can’t perform that action at this time.
0 commit comments