mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
Formatting issues
This commit is contained in:
parent
b5a8a6f946
commit
8a8db72b7c
1 changed files with 10 additions and 10 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue