You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Junichi !
Would be nice if all "new > CakePHP3 Table" have the initialize code pre-written by your plugin
Steps to reproduce
"new > CakePHP3 Table"
Actual results
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
use Cake\ORM\Table;
/**
* CakePHP FuncionarioTable
* @author celso
*/
class FuncionarioTable extends Table {
}
Expected results
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
use Cake\ORM\Table;
/**
* CakePHP FuncionarioTable
* @author celso
*/
class FuncionarioTable extends Table {
public function initialize(array $config) {
parent::initialize($config);
}
}
Your environment (NetBeans and plugin version, e.t.c.)
Netbeans 10.0
The text was updated successfully, but these errors were encountered:
Issue type
Overview description
Hi Junichi !
Would be nice if all "new > CakePHP3 Table" have the initialize code pre-written by your plugin
Steps to reproduce
"new > CakePHP3 Table"
Actual results
Expected results
Your environment (NetBeans and plugin version, e.t.c.)
Netbeans 10.0
The text was updated successfully, but these errors were encountered: