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