MyUsersTable.php 330 B

12345678910111213141516171819
  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->_locator->get();
  7. */
  8. class MyUsersTable extends Table
  9. {
  10. /**
  11. * Overrides default table name
  12. *
  13. * @var string
  14. */
  15. protected ?string $_table = 'users';
  16. }