Skip to content

Instantly share code, notes, and snippets.

@berkayunal
Created March 29, 2018 12:48
Show Gist options
  • Save berkayunal/649dd7a02334c3f4a2b45d1b6471326c to your computer and use it in GitHub Desktop.
Save berkayunal/649dd7a02334c3f4a2b45d1b6471326c to your computer and use it in GitHub Desktop.
Enable autocomplete for CakePHP 3 in PhpStorm
<?php
namespace PHPSTORM_META;
override(\Cake\ORM\TableRegistry::get(0), map(['' => '\App\Model\Table\@Table']));
<?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