Skip to content

Commit

Permalink
Fix some missed doc block issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy Warner committed Nov 30, 2014
1 parent fb61d93 commit 327fcb4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Model/Model.php
Expand Up @@ -2594,7 +2594,7 @@ public function updateAll($fields, $conditions = true) {
* @param bool $cascade Set to true to delete records that depend on this record
* @return bool True on success
* @triggers Model.beforeDelete $this, array($cascade)
* @triggers Model.afterDelete $this)
* @triggers Model.afterDelete $this
* @link http://book.cakephp.org/2.0/en/models/deleting-data.html
*/
public function delete($id = null, $cascade = true) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Event/CakeEventManagerTest.php
Expand Up @@ -518,7 +518,7 @@ public function testDispatchLocalHandledByGlobal() {
* listeners at the same priority.
*
* @return void
* @triggers fake.event $this)
* @triggers fake.event $this
*/
public function testDispatchWithGlobalAndLocalEvents() {
$listener = new CustomTestEventListener();
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/TestSuite/ControllerTestCase.php
Expand Up @@ -213,7 +213,7 @@ public function __call($name, $arguments) {
* @param string $url The url to test
* @param array $options See options
* @return mixed
* @triggers ControllerTestCase $Dispatch, array('request' => $request
* @triggers ControllerTestCase $Dispatch, array('request' => $request)
*/
protected function _testAction($url = '', $options = array()) {
$this->vars = $this->result = $this->view = $this->contents = $this->headers = null;
Expand Down

0 comments on commit 327fcb4

Please sign in to comment.