LogableCommentFixture.php 402 B

12345678910111213141516
  1. <?php
  2. class LogableCommentFixture extends CakeTestFixture {
  3. public $fields = [
  4. 'id' => ['type' => 'integer', 'key' => 'primary'],
  5. 'content' => ['type' => 'string', 'length' => 255, 'null' => false],
  6. ];
  7. public $records = [
  8. ['id' => 1, 'content' => 'I like it'],
  9. ['id' => 2, 'content' => 'I don\'t'],
  10. ['id' => 3, 'content' => 'I LOVE it!'],
  11. ['id' => 4, 'content' => 'I hate it'],
  12. ];
  13. }