ソースを参照

Formatting issues

k-halaburda 12 年 前
コミット
bb7ff48b01
1 ファイル変更10 行追加10 行削除
  1. 10 10
      lib/Cake/Test/Fixture/ModelWithRelationsFixture.php

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

@@ -26,22 +26,22 @@
  */
 class ModelWithRelationsFixture extends CakeTestFixture {
 
-	/**
-	* fields property
-	*
-	* @var array
-	*/
+/**
+ * fields property
+ *
+ * @var array
+ */
 	public $fields = array(
 		'id' => array('type' => 'integer', 'key' => 'primary'),
 		'name' => array('type' => 'string'),
 		'related_id' => array('type' => 'integer'),
 	);
 
-	/**
-	* records property
-	*
-	* @var array
-	*/
+/**
+ * records property
+ *
+ * @var array
+ */
 	public $records = array(
 		array('id' => 1, 'name' => 'First record', 'related_id' => 1),
 		array('id' => 2, 'name' => 'Second record', 'related_id' => 2)