Browse Source

Formatting issues

k-halaburda 12 years ago
parent
commit
8a8db72b7c
1 changed files with 10 additions and 10 deletions
  1. 10 10
      lib/Cake/Test/Fixture/ModelRelatedFixture.php

+ 10 - 10
lib/Cake/Test/Fixture/ModelRelatedFixture.php

@@ -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)