Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
19df601c
Commit
19df601c
authored
Mar 16, 2010
by
jwage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Fixing strict standards notice when you execute a task that does not exist
parent
34cbb8af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
TaskNamespace.php
lib/Doctrine/Common/Cli/TaskNamespace.php
+1
-1
No files found.
lib/Doctrine/Common/Cli/TaskNamespace.php
View file @
19df601c
...
@@ -240,7 +240,7 @@ class TaskNamespace extends AbstractNamespace
...
@@ -240,7 +240,7 @@ class TaskNamespace extends AbstractNamespace
$printer
->
writeln
(
$message
,
'ERROR'
);
$printer
->
writeln
(
$message
,
'ERROR'
);
// Unable instantiate task or task is not valid
// Unable instantiate task or task is not valid
if
(
$task
!==
null
)
{
if
(
isset
(
$task
)
&&
$task
!==
null
)
{
$printer
->
write
(
PHP_EOL
);
$printer
->
write
(
PHP_EOL
);
$task
->
basicHelp
();
// Fallback of not-valid task arguments
$task
->
basicHelp
();
// Fallback of not-valid task arguments
}
}
...
...
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