Skip to content

Commit

Permalink
Fix coding standards errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 29, 2013
1 parent 53a2046 commit f9ba7d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cake/ORM/Query.php
Expand Up @@ -942,7 +942,7 @@ public function find($finder, $options = []) {
*
* @return void
*/
public function _dirty() {
protected function _dirty() {
$this->_results = null;
parent::_dirty();
}
Expand Down
2 changes: 1 addition & 1 deletion Cake/ORM/ResultSet.php
Expand Up @@ -212,7 +212,7 @@ public function valid() {
* @return string Serialized object
*/
public function serialize() {
while($this->valid()) {
while ($this->valid()) {
$this->next();
}
return serialize($this->_results);
Expand Down

0 comments on commit f9ba7d0

Please sign in to comment.