BitmaskedCommentsTable.php 248 B

123456789101112131415161718
  1. <?php
  2. namespace TestApp\Model\Table;
  3. use Tools\Model\Table\Table;
  4. class BitmaskedCommentsTable extends Table {
  5. public $validate = array(
  6. 'status' => array(
  7. 'notEmpty' => array(
  8. 'rule' => 'notEmpty',
  9. 'last' => true
  10. )
  11. )
  12. );
  13. }