UsersTable.php 218 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace TestApp\Model\Table;
  4. use Cake\ORM\Table;
  5. /**
  6. * Used to test correct class is instantiated when using $this->getTableLocator()->get();
  7. */
  8. class UsersTable extends Table
  9. {
  10. }