Skip to content

Commit

Permalink
Minor format edits
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Sep 28, 2012
1 parent ad72dfa commit 6ea5877
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions en/core-libraries/collections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ midway similar to stopping event propagation in JavaScript::
$this->Behaviors->trigger(
'beforeFind',
array($this, $query),
array('break' => true, 'breakOn' => false
));
array('break' => true, 'breakOn' => false),
);

In the above example, if any behavior returns ``false`` from its beforeFind
method, no further callbacks will be called. In addition the return of
method, no further callbacks will be called. In addition, the return of
``trigger()`` will be false.

Enabling and disabling objects
Expand Down
1 change: 1 addition & 0 deletions en/core-utility-libraries/httpsocket.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ HTTP methods.
$request is a keyed array of various options. Here is the format
and default settings::

<?php
public $request = array(
'method' => 'GET',
'uri' => array(
Expand Down

0 comments on commit 6ea5877

Please sign in to comment.