1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
5
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
6
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
7
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
8
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
9
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
10
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
11
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
12
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
13
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
14
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
15
|
|
|
* |
16
|
|
|
* This software consists of voluntary contributions made by many individuals |
17
|
|
|
* and is licensed under the MIT license. |
18
|
|
|
*/ |
19
|
|
|
namespace LearnZF2Captcha\Factory\Form; |
20
|
|
|
|
21
|
|
|
use LearnZF2Captcha\Form\CaptchaForm; |
22
|
|
|
use Zend\ServiceManager\FactoryInterface; |
23
|
|
|
use Zend\ServiceManager\ServiceLocatorInterface; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Factory for CaptchaForm instantiation. |
27
|
|
|
* |
28
|
|
|
* @author Abdul Malik Ikhsan <[email protected]> |
29
|
|
|
*/ |
30
|
|
|
class CaptchaFormFactory implements FactoryInterface |
31
|
|
|
{ |
32
|
|
|
/** |
33
|
|
|
* {@inheritdoc} |
34
|
|
|
*/ |
35
|
|
|
public function createService(ServiceLocatorInterface $serviceLocator) |
36
|
|
|
{ |
37
|
|
|
$services = $serviceLocator->getServiceLocator(); |
|
|
|
|
38
|
|
|
$config = $services->get('Config'); |
39
|
|
|
$captchaAdapterKey = $services->get('Application') |
40
|
|
|
->getMvcEvent() |
41
|
|
|
->getRequest() |
42
|
|
|
->getQuery('captcha_adapter', 0); |
43
|
|
|
|
44
|
|
|
$form = new CaptchaForm($config['learnzf2_captcha_config'], $captchaAdapterKey); |
45
|
|
|
|
46
|
|
|
return $form; |
47
|
|
|
} |
48
|
|
|
} |
49
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: