1 | <?php |
||
10 | class EventItemFactory implements EventItemFactoryInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $namespaceUri; |
||
16 | |||
17 | /** |
||
18 | * @param string $namespaceUri |
||
19 | */ |
||
20 | public function __construct($namespaceUri) |
||
24 | |||
25 | /** |
||
26 | * @param string $cdbXml |
||
27 | * @throws \CultureFeed_Cdb_ParseException |
||
28 | * @return \CultureFeed_Cdb_Item_Event |
||
29 | */ |
||
30 | public function createFromCdbXml($cdbXml) |
||
34 | |||
35 | /** |
||
36 | * @param string $namespaceUri |
||
37 | * @param string $cdbXml |
||
38 | * @throws CultureFeed_Cdb_ParseException |
||
39 | * @return CultureFeed_Cdb_Item_Event |
||
40 | */ |
||
41 | public static function createEventFromCdbXml($namespaceUri, $cdbXml) |
||
63 | |||
64 | /** |
||
65 | * UDB2 contained a bug that allowed for a keyword to have a semicolon. |
||
66 | * @param CultureFeed_Cdb_Item_Event $event |
||
67 | * @return CultureFeed_Cdb_Item_Event |
||
68 | */ |
||
69 | private static function splitKeywordTagOnSemiColon( |
||
97 | |||
98 | /** |
||
99 | * @param CultureFeed_Cdb_Item_Event $event |
||
100 | * @return bool |
||
101 | */ |
||
102 | private static function isEventOlderThanSplitKeywordFix( |
||
107 | } |
||
108 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.