Netbeans plugin for nette scaffolding
- mcmatak
- Member | 504
Is there any plugin to netbeans which helps me with scaffolding about nette?
For example link new service to some service, usually i need to link 5 services for example and it takes long time.
U need to write
use Model\ProductStockMarkets\ProductStockMarketRepositoryService;
then you have to write
/** @var ProductStockMarketRepositoryService */
protected $productStockMarketRepositoryService;
then
public function __construct(ProductStockMarketRepositoryService
$productStockMarketRepositoryService)
{
$this->productStockMarketRepositoryService =
$productStockMarketRepositoryService;
}
and next service again and again, there is lot of places which could be optimized when you developing nette project.
any suggestions?
thanks
Last edited by mcmatak (2018-03-05 14:18)
- mcmatak
- Member | 504
thanks,
my idea is just
write use and with autocomplete choose the right service,
after that alt+insert there will be Generate service and all done
this would be my solution
https://platform.netbeans.org/…nerator.html
i dont know why but i am not abble to create it, maybe you need java edition of netbeans yes? as this is written in java
but i tried to code php in ATOM, but i was not abble to set it correctly autocomplete nor navigation doesnt work for me … is there somebody who get ATOM work for php?
i am interested if ATOM and php coding is usable