Я, возможно, что-то упускаю, но у меня возникает следующая проблема:
Я использую Netbeans IDE 7.0.
Я создал шаблон для новых классов PHP, но когдаЯ пытаюсь создать новый класс, шаблон, который я создал, вставляется без отступа.
Пример:
Шаблон:
<?php
/**
* Description of ${name}
*
* @author ${user}
*/
include_once("class_functions.php");
class ${name} {
//Class properties
function __construct() {
//Constructor
}
public function __get($name) {
if(method_exists($this, 'get' . ucfirst($name))) {
return $this->{'get' . ucfirst($name)};
} else {
if (property_exists($this, $name)) {
$this->{$name} = $value;
} else {
throw new Exception("Undefined property '$name'.");
}
}
}
}
Но когда я использую этотшаблон, новый класс создается как:
<?php
/**
* Description of ${name}
*
* @author ${user}
*/
include_once("class_functions.php");
class ${name} {
//Class properties
function __construct() {
//Constructor
}
public function __get($name) {
if(method_exists($this, 'get' . ucfirst($name))) {
return $this->{'get' . ucfirst($name)};
} else {
if (property_exists($this, $name)) {
$this->{$name} = $value;
} else {
throw new Exception("Undefined property '$name'.");
}
}
}
}
Кто-нибудь знает, что я делаю неправильно?
Любая помощь с благодарностью!Заранее спасибо.