Fix some missed doc block issues

This commit is contained in:
Guy Warner 2014-11-30 14:50:11 -07:00
parent fb61d9393b
commit 327fcb4846
3 changed files with 3 additions and 3 deletions

View file

@ -2594,7 +2594,7 @@ class Model extends Object implements CakeEventListener {
* @param bool $cascade Set to true to delete records that depend on this record * @param bool $cascade Set to true to delete records that depend on this record
* @return bool True on success * @return bool True on success
* @triggers Model.beforeDelete $this, array($cascade) * @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 * @link http://book.cakephp.org/2.0/en/models/deleting-data.html
*/ */
public function delete($id = null, $cascade = true) { public function delete($id = null, $cascade = true) {

View file

@ -518,7 +518,7 @@ class CakeEventManagerTest extends CakeTestCase {
* listeners at the same priority. * listeners at the same priority.
* *
* @return void * @return void
* @triggers fake.event $this) * @triggers fake.event $this
*/ */
public function testDispatchWithGlobalAndLocalEvents() { public function testDispatchWithGlobalAndLocalEvents() {
$listener = new CustomTestEventListener(); $listener = new CustomTestEventListener();

View file

@ -213,7 +213,7 @@ abstract class ControllerTestCase extends CakeTestCase {
* @param string $url The url to test * @param string $url The url to test
* @param array $options See options * @param array $options See options
* @return mixed * @return mixed
* @triggers ControllerTestCase $Dispatch, array('request' => $request * @triggers ControllerTestCase $Dispatch, array('request' => $request)
*/ */
protected function _testAction($url = '', $options = array()) { protected function _testAction($url = '', $options = array()) {
$this->vars = $this->result = $this->view = $this->contents = $this->headers = null; $this->vars = $this->result = $this->view = $this->contents = $this->headers = null;