Formatting issues

This commit is contained in:
k-halaburda 2013-08-13 13:03:19 +02:00
parent b5a8a6f946
commit 8a8db72b7c

View file

@ -26,22 +26,22 @@
*/ */
class ModelRelatedFixture extends CakeTestFixture { class ModelRelatedFixture extends CakeTestFixture {
/** /**
* fields property * fields property
* *
* @var array * @var array
*/ */
public $fields = array( public $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'), 'id' => array('type' => 'integer', 'key' => 'primary'),
'name' => array('type' => 'string'), 'name' => array('type' => 'string'),
'primary_id' => array('type' => 'integer'), 'primary_id' => array('type' => 'integer'),
); );
/** /**
* records property * records property
* *
* @var array * @var array
*/ */
public $records = array( public $records = array(
array('id' => 1, 'name' => 'This should change on afterFind', 'primary_id' => 1), 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) array('id' => 2, 'name' => 'This also should change on afterFind', 'primary_id' => 2)