File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
WebProfilerBundle/Resources/views/Profiler
HttpFoundation/Session/Storage Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,14 @@ private static function getPhpUnitCliConfigArgument()
80
80
if (preg_match ('/^-[^ \-]*c$/ ' , $ testArg ) || $ testArg === '--configuration ' ) {
81
81
$ dir = realpath ($ reversedArgs [$ argIndex - 1 ]);
82
82
break ;
83
- } elseif (strpos ($ testArg , '--configuration= ' ) === 0 ) {
83
+ } elseif (0 === strpos ($ testArg , '--configuration= ' )) {
84
84
$ argPath = substr ($ testArg , strlen ('--configuration= ' ));
85
85
$ dir = realpath ($ argPath );
86
86
break ;
87
+ } elseif (0 === strpos ($ testArg , '-c ' )) {
88
+ $ argPath = substr ($ testArg , strlen ('-c ' ));
89
+ $ dir = realpath ($ argPath );
90
+ break ;
87
91
}
88
92
}
89
93
Original file line number Diff line number Diff line change 188
188
Sfjs .removeClass (ajaxToolbarPanel, ' sf-toolbar-status-red' );
189
189
} else if (state == ' error' ) {
190
190
Sfjs .addClass (ajaxToolbarPanel, ' sf-toolbar-status-red' );
191
+ Sfjs .removeClass (ajaxToolbarPanel, ' sf-ajax-request-loading' );
191
192
} else {
192
193
Sfjs .addClass (ajaxToolbarPanel, ' sf-ajax-request-loading' );
193
194
}
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ public function setOptions(array $options)
332
332
* session.save_handler and session.save_path e.g.
333
333
*
334
334
* ini_set('session.save_handler', 'files');
335
- * ini_set('session.save_path', /tmp');
335
+ * ini_set('session.save_path', ' /tmp');
336
336
*
337
337
* or pass in a NativeSessionHandler instance which configures session.save_handler in the
338
338
* constructor, for a template see NativeFileSessionHandler or use handlers in
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public function withMaxDepth($maxDepth)
53
53
}
54
54
55
55
/**
56
- * Limits the numbers of elements per depth level.
56
+ * Limits the number of elements per depth level.
57
57
*
58
58
* @param int $maxItemsPerDepth The max number of items dumped per depth level.
59
59
*
You can’t perform that action at this time.
0 commit comments