Correction of many errors code inspection.

Adjustments code according to the standards.
Adding missing PHPDoc comment.
This commit is contained in:
Thiago Talma
2014-04-16 19:29:07 -03:00
parent 664d2aa007
commit c1445871f4
24 changed files with 127 additions and 61 deletions

View File

@ -89,8 +89,9 @@ class FixtureController extends Controller
}
if (!$foundFixtures) {
throw new Exception("No files were found by name: \"" . implode(', ', $fixtures) . "\".\n"
. "Check that files with these name exists, under fixtures path: \n\"" . $this->getFixturePath() . "\"."
throw new Exception(
"No files were found by name: \"" . implode(', ', $fixtures) . "\".\n" .
"Check that files with these name exists, under fixtures path: \n\"" . $this->getFixturePath() . "\"."
);
}
@ -131,8 +132,9 @@ class FixtureController extends Controller
}
if (!$foundFixtures) {
throw new Exception("No files were found by name: \"" . implode(', ', $fixtures) . "\".\n"
. "Check that fixtures with these name exists, under fixtures path: \n\"" . $this->getFixturePath() . "\"."
throw new Exception(
"No files were found by name: \"" . implode(', ', $fixtures) . "\".\n" .
"Check that fixtures with these name exists, under fixtures path: \n\"" . $this->getFixturePath() . "\"."
);
}