Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takahashi-h5/efa13922f74215945c54d8a4a79c4c97 to your computer and use it in GitHub Desktop.
Save takahashi-h5/efa13922f74215945c54d8a4a79c4c97 to your computer and use it in GitHub Desktop.
<?php
declare(strict_types=1);
class IndexController extends ControllerBase
{
public function indexAction()
{
}
public function testAction()
{
$region = TestTbl::findFirst(1);
echo $region->id + ' : ' + $region->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment