8
8
* @package Zend_Search
9
9
*/
10
10
11
- namespace Zend \ Search \Lucene ;
11
+ namespace ZendSearch \Lucene ;
12
12
13
13
/**
14
14
* Abstract Finite State Machine
@@ -158,7 +158,7 @@ public function addState($state)
158
158
* No any action is invoked
159
159
*
160
160
* @param integer|string $state
161
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
161
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
162
162
*/
163
163
public function setState ($ state )
164
164
{
@@ -227,9 +227,9 @@ public function addRules($rules)
227
227
* @param integer|string $sourceState
228
228
* @param integer|string $input
229
229
* @param integer|string $targetState
230
- * @param \Zend\Search \Lucene\FSMAction|null $inputAction
231
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
232
- * @throws \Zend\Search \Lucene\Exception\RuntimeException
230
+ * @param \ZendSearch \Lucene\FSMAction|null $inputAction
231
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
232
+ * @throws \ZendSearch \Lucene\Exception\RuntimeException
233
233
*/
234
234
public function addRule ($ sourceState , $ input , $ targetState , $ inputAction = null )
235
235
{
@@ -265,8 +265,8 @@ public function addRule($sourceState, $input, $targetState, $inputAction = null)
265
265
* Action execution order is defined by addEntryAction() calls
266
266
*
267
267
* @param integer|string $state
268
- * @param \Zend\Search \Lucene\FSMAction $action
269
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
268
+ * @param \ZendSearch \Lucene\FSMAction $action
269
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
270
270
*/
271
271
public function addEntryAction ($ state , FSMAction $ action )
272
272
{
@@ -287,8 +287,8 @@ public function addEntryAction($state, FSMAction $action)
287
287
* Action execution order is defined by addEntryAction() calls
288
288
*
289
289
* @param integer|string $state
290
- * @param \Zend\Search \Lucene\FSMAction $action
291
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
290
+ * @param \ZendSearch \Lucene\FSMAction $action
291
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
292
292
*/
293
293
public function addExitAction ($ state , FSMAction $ action )
294
294
{
@@ -310,8 +310,8 @@ public function addExitAction($state, FSMAction $action)
310
310
*
311
311
* @param integer|string $state
312
312
* @param integer|string $input
313
- * @param \Zend\Search \Lucene\FSMAction $action
314
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
313
+ * @param \ZendSearch \Lucene\FSMAction $action
314
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
315
315
*/
316
316
public function addInputAction ($ state , $ inputSymbol , FSMAction $ action )
317
317
{
@@ -339,8 +339,8 @@ public function addInputAction($state, $inputSymbol, FSMAction $action)
339
339
*
340
340
* @param integer|string $sourceState
341
341
* @param integer|string $targetState
342
- * @param \Zend\Search \Lucene\FSMAction $action
343
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
342
+ * @param \ZendSearch \Lucene\FSMAction $action
343
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
344
344
*/
345
345
public function addTransitionAction ($ sourceState , $ targetState , FSMAction $ action )
346
346
{
@@ -366,8 +366,8 @@ public function addTransitionAction($sourceState, $targetState, FSMAction $actio
366
366
* Process an input
367
367
*
368
368
* @param mixed $input
369
- * @throws \Zend\Search \Lucene\Exception\RuntimeException
370
- * @throws \Zend\Search \Lucene\Exception\InvalidArgumentException
369
+ * @throws \ZendSearch \Lucene\Exception\RuntimeException
370
+ * @throws \ZendSearch \Lucene\Exception\InvalidArgumentException
371
371
*/
372
372
public function process ($ input )
373
373
{
@@ -410,7 +410,7 @@ public function process($input)
410
410
}
411
411
412
412
/**
413
- * @throws \Zend\Search \Lucene\Exception\RuntimeException
413
+ * @throws \ZendSearch \Lucene\Exception\RuntimeException
414
414
*/
415
415
public function reset ()
416
416
{
0 commit comments