Skip to content

Commit

Permalink
Fix a few more doc block errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jul 8, 2014
1 parent a1defb4 commit 5d027ff
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Console/ConsoleOptionParser.php
Expand Up @@ -458,7 +458,7 @@ public function subcommands() {
* to parse the $argv
*
* @param array $argv Array of args (argv) to parse.
* @return Array [$params, $args]
* @return array [$params, $args]
* @throws \Cake\Console\Error\ConsoleException When an invalid parameter is encountered.
*/
public function parse($argv) {
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Shell.php
Expand Up @@ -414,7 +414,7 @@ public function getOptionParser() {
* Overload get for lazy building of tasks
*
* @param string $name The task to get.
* @return Shell Object of Task
* @return \Cake\Console\Shell Object of Task
*/
public function __get($name) {
if (empty($this->{$name}) && in_array($name, $this->taskNames)) {
Expand Down
22 changes: 11 additions & 11 deletions src/TestSuite/Fixture/FixtureInjector.php
Expand Up @@ -81,7 +81,7 @@ public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
/**
* Not Implemented
*
* @param PHPUnit_Framework_Test $test The test to add errors from.
* @param \PHPUnit_Framework_Test $test The test to add errors from.
* @param Exception $e The exception
* @param float $time current time
* @return void
Expand All @@ -92,8 +92,8 @@ public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
/**
* Not Implemented
*
* @param PHPUnit_Framework_Test $test The test case
* @param PHPUnit_Framework_AssertionFailedError $e The failed assertion
* @param \PHPUnit_Framework_Test $test The test case
* @param \PHPUnit_Framework_AssertionFailedError $e The failed assertion
* @param float $time current time
* @return void
*/
Expand All @@ -103,8 +103,8 @@ public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_Asser
/**
* Not Implemented
*
* @param PHPUnit_Framework_Test $test The test case
* @param Exception $e The incomplete test error.
* @param \PHPUnit_Framework_Test $test The test case
* @param \Exception $e The incomplete test error.
* @param float $time current time
* @return void
*/
Expand All @@ -114,8 +114,8 @@ public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $t
/**
* Not Implemented
*
* @param PHPUnit_Framework_Test $test The test case
* @param Exception $e Skipped test exception
* @param \PHPUnit_Framework_Test $test The test case
* @param \Exception $e Skipped test exception
* @param float $time current time
* @return void
*/
Expand All @@ -125,7 +125,7 @@ public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time
/**
* Adds fixtures to a test case when it starts.
*
* @param PHPUnit_Framework_Test $test The test case
* @param \PHPUnit_Framework_Test $test The test case
* @return void
*/
public function startTest(PHPUnit_Framework_Test $test) {
Expand All @@ -139,7 +139,7 @@ public function startTest(PHPUnit_Framework_Test $test) {
/**
* Unloads fixtures from the test case.
*
* @param PHPUnit_Framework_Test $test The test case
* @param \PHPUnit_Framework_Test $test The test case
* @param float $time current time
* @return void
*/
Expand All @@ -152,8 +152,8 @@ public function endTest(PHPUnit_Framework_Test $test, $time) {
/**
* Not Implemented
*
* @param PHPUnit_Framework_Test $test The test case
* @param Exception $e The exception to track
* @param \PHPUnit_Framework_Test $test The test case
* @param \Exception $e The exception to track
* @param float $time current time
* @return void
*/
Expand Down

0 comments on commit 5d027ff

Please sign in to comment.