Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
c7b05f0c
Commit
c7b05f0c
authored
May 07, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed inconsistent return of \yii\console\Application::runAction()
parent
edc92a86
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Application.php
framework/console/Application.php
+2
-2
No files found.
framework/CHANGELOG.md
View file @
c7b05f0c
...
...
@@ -25,6 +25,7 @@ Yii Framework 2 Change Log
-
Bug #3311: Fixed the bug that
`yii\di\Container::has()`
did not return correct value (mgrechanik, qiangxue)
-
Bug #3327: Fixed "Unable to find debug data" when logging objects with circular references (jarekkozak, samdark)
-
Bug #3368: Fix for comparing numeric attributes in JavaScript (technixp)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
-
Enh #2837: Error page now shows arguments in stack trace method calls (samdark)
-
Enh #2906: Added support for using conditional comments for js and css files registered through asset bundles and Html helper (exromany, qiangxue)
...
...
framework/console/Application.php
View file @
c7b05f0c
...
...
@@ -138,7 +138,7 @@ class Application extends \yii\base\Application
return
$result
;
}
else
{
$response
=
$this
->
getResponse
();
$response
->
exitStatus
=
(
int
)
$result
;
$response
->
exitStatus
=
$result
;
return
$response
;
}
...
...
@@ -157,7 +157,7 @@ class Application extends \yii\base\Application
public
function
runAction
(
$route
,
$params
=
[])
{
try
{
return
parent
::
runAction
(
$route
,
$params
);
return
(
int
)
parent
::
runAction
(
$route
,
$params
);
}
catch
(
InvalidRouteException
$e
)
{
throw
new
Exception
(
Yii
::
t
(
'yii'
,
'Unknown command "{command}".'
,
[
'command'
=>
$route
]),
0
,
$e
);
}
...
...
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