From 5ad727de0011f262b959918666a739ab13e15dcb Mon Sep 17 00:00:00 2001 From: Marco Perone Date: Tue, 19 Jul 2016 11:58:49 +0200 Subject: [PATCH] add `use` clause in code example add the `use Blog\Model\PostInterface;` clause in the `PostService` class, do that `PostInterface` can have the correct namespace --- docs/src/in-depth-guide/zend-form-zend-form-fieldset.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/in-depth-guide/zend-form-zend-form-fieldset.rst b/docs/src/in-depth-guide/zend-form-zend-form-fieldset.rst index 63cfc207c..52fd74fd2 100644 --- a/docs/src/in-depth-guide/zend-form-zend-form-fieldset.rst +++ b/docs/src/in-depth-guide/zend-form-zend-form-fieldset.rst @@ -636,7 +636,7 @@ As you can see the ``savePost()`` function has been added and needs to be implem namespace Blog\Service; use Blog\Mapper\PostMapperInterface; - + use Blog\Model\PostInterface; class PostService implements PostServiceInterface {