Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
f4d528ca
Commit
f4d528ca
authored
Sep 03, 2014
by
webchick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2332299
by dawehner: Fixed Strict failures in TestRunnerKernel.
parent
7c79e1c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
core/lib/Drupal/Core/Test/TestRunnerKernel.php
core/lib/Drupal/Core/Test/TestRunnerKernel.php
+2
-2
No files found.
core/lib/Drupal/Core/Test/TestRunnerKernel.php
View file @
f4d528ca
...
...
@@ -22,14 +22,14 @@ class TestRunnerKernel extends DrupalKernel {
/**
* {@inheritdoc}
*/
public
static
function
createFromRequest
(
Request
$request
,
ClassLoader
$class_loader
,
$environment
=
'test_runner'
,
$allow_dumping
=
TRUE
)
{
public
static
function
createFromRequest
(
Request
$request
,
$class_loader
,
$environment
=
'test_runner'
,
$allow_dumping
=
TRUE
)
{
return
parent
::
createFromRequest
(
$request
,
$class_loader
,
$environment
);
}
/**
* {@inheritdoc}
*/
public
function
__construct
(
$environment
,
ClassLoader
$class_loader
)
{
public
function
__construct
(
$environment
,
$class_loader
)
{
parent
::
__construct
(
$environment
,
$class_loader
,
FALSE
);
// Prime the module list and corresponding Extension objects.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment