Created
March 29, 2018 12:48
-
-
Save berkayunal/649dd7a02334c3f4a2b45d1b6471326c to your computer and use it in GitHub Desktop.
Enable autocomplete for CakePHP 3 in PhpStorm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace PHPSTORM_META; | |
override(\Cake\ORM\TableRegistry::get(0), map(['' => '\App\Model\Table\@Table'])); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use App\Model\Table\UsersTable; | |
use Cake\ORM\TableRegistry; | |
$usersTable = TableRegistry::get('Users'); | |
$user = $usersTable->get(1); | |
$data = $usersTable->myCustomMethod(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment