0
(로 .phtml 파일)phalcon의 넷빈즈 코드 완성 MVC
$this -> view -> this_is(...)
넷빈즈는 힌트를 보여 내가 컨트롤러
$this -> view -> this_is_my_var = 'hello world'
에 정의 그리고 내가보기에 작성하는 경우는 가능한 코드 완성의 this_is_my_var
(로 .phtml 파일)phalcon의 넷빈즈 코드 완성 MVC
$this -> view -> this_is(...)
넷빈즈는 힌트를 보여 내가 컨트롤러
$this -> view -> this_is_my_var = 'hello world'
에 정의 그리고 내가보기에 작성하는 경우는 가능한 코드 완성의 this_is_my_var
어쩌면 당신은 이것을 찾고 있습니까?
PHP
$this->view->this_is_my_var1 = 'hello world';
$this->view->this_is_my_var2 = new \Phalcon\Registry();
나는 바르와 코멘트를 작성해야하기 때문 수동 솔루션입니다
/**
* @var string $this_is_my_var1
* @var \Phalcon\Registry $this_is_my_var2
*/
보기. 변수를 프롬프트 할 수있는 자동 솔루션을 찾고 있습니다. – ShutDown