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 1d9bce3 commit b5a8a6f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/Cake/Test/Fixture/ModelHabtmRelationFixture.php
Expand Up @@ -26,22 +26,22 @@
*/
class ModelHabtmRelationFixture extends CakeTestFixture {

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

/**
* records property
*
* @var array
*/
/**
* records property
*
* @var array
*/
public $records = array(
array('id' => 1, 'primary_id' => 1, 'related_id' => 1),
array('id' => 2, 'primary_id' => 1, 'related_id' => 2),
Expand Down

0 comments on commit b5a8a6f

Please sign in to comment.