Skip to content

Commit

Permalink
Formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
k-halaburda committed Aug 13, 2013
1 parent b5a8a6f commit 8a8db72
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/Cake/Test/Fixture/ModelRelatedFixture.php
Expand Up @@ -26,22 +26,22 @@
*/
class ModelRelatedFixture extends CakeTestFixture {

/**
* fields property
*
* @var array
*/
/**
* fields property
*
* @var array
*/
public $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'),
'name' => array('type' => 'string'),
'primary_id' => array('type' => 'integer'),
);

/**
* records property
*
* @var array
*/
/**
* records property
*
* @var array
*/
public $records = array(
array('id' => 1, 'name' => 'This should change on afterFind', 'primary_id' => 1),
array('id' => 2, 'name' => 'This also should change on afterFind', 'primary_id' => 2)
Expand Down

0 comments on commit 8a8db72

Please sign in to comment.