1 | <?php |
||
25 | class YamlQuoteProvider extends AbstractQuoteProvider { |
||
26 | |||
27 | /** |
||
28 | * Filename. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | private $filename; |
||
33 | |||
34 | /** |
||
35 | * Constructor. |
||
36 | * |
||
37 | * @param string $filename The filename. |
||
38 | * @throws FileNotFoundException Throws a file not found exception. |
||
39 | */ |
||
40 | public function __construct($filename) { |
||
44 | |||
45 | /** |
||
46 | * {@inheritDoc} |
||
47 | */ |
||
48 | public function getDomain() { |
||
51 | |||
52 | /** |
||
53 | * Get the filename. |
||
54 | * |
||
55 | * @return string Returns the filename. |
||
56 | */ |
||
57 | public function getFilename() { |
||
60 | |||
61 | /** |
||
62 | * {@inheritDoc} |
||
63 | */ |
||
64 | public function init() { |
||
83 | |||
84 | /** |
||
85 | * Set the filename. |
||
86 | * |
||
87 | * @param string $filename The filename. |
||
88 | * @return YamlQuoteProvider Returns this quote provider. |
||
89 | * @throws FileNotFoundException Throws a file not found exception. |
||
90 | */ |
||
91 | protected function setFilename($filename) { |
||
98 | } |
||
99 |