15 lines
217 B
PHP
15 lines
217 B
PHP
|
<?php
|
||
|
class Doctrine_Filter {
|
||
|
|
||
|
private $name;
|
||
|
|
||
|
public function __construct($name) {
|
||
|
$this->name = $name;
|
||
|
}
|
||
|
|
||
|
public function getName() {
|
||
|
return $this->name;
|
||
|
}
|
||
|
}
|
||
|
?>
|