Skip to content

Commit

Permalink
Fixed curly brackets at a few class definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rik van der Heijden committed May 4, 2013
1 parent 96a769d commit dddf8aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions lib/Cake/Test/Case/Model/BehaviorCollectionTest.php
Expand Up @@ -349,15 +349,15 @@ public function mapped(Model $model, $method, $query) {
*
* @package Cake.Test.Case.Model
*/
class Test3Behavior extends TestBehavior{
class Test3Behavior extends TestBehavior {
}

/**
* Test4Behavior class
*
* @package Cake.Test.Case.Model
*/
class Test4Behavior extends ModelBehavior{
class Test4Behavior extends ModelBehavior {

public function setup(Model $model, $config = null) {
$model->bindModel(
Expand All @@ -372,7 +372,7 @@ public function setup(Model $model, $config = null) {
*
* @package Cake.Test.Case.Model
*/
class Test5Behavior extends ModelBehavior{
class Test5Behavior extends ModelBehavior {

public function setup(Model $model, $config = null) {
$model->bindModel(
Expand All @@ -387,7 +387,7 @@ public function setup(Model $model, $config = null) {
*
* @package Cake.Test.Case.Model
*/
class Test6Behavior extends ModelBehavior{
class Test6Behavior extends ModelBehavior {

public function setup(Model $model, $config = null) {
$model->bindModel(
Expand All @@ -402,7 +402,7 @@ public function setup(Model $model, $config = null) {
*
* @package Cake.Test.Case.Model
*/
class Test7Behavior extends ModelBehavior{
class Test7Behavior extends ModelBehavior {

public function setup(Model $model, $config = null) {
$model->bindModel(
Expand Down
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Model/models.php
Expand Up @@ -1315,7 +1315,7 @@ class NodeNoAfterFind extends CakeTestModel {
*
* @package Cake.Test.Case.Model
*/
class Node extends CakeTestModel{
class Node extends CakeTestModel {

/**
* name property
Expand Down
Expand Up @@ -20,8 +20,7 @@

App::uses('CakeLogInterface', 'Log');

class TestPluginLog implements CakeLogInterface
{
class TestPluginLog implements CakeLogInterface {

public function write($type, $message) {
}
Expand Down

0 comments on commit dddf8aa

Please sign in to comment.