DOCS Fixed namespace for factory

This commit is contained in:
Michael Strong 2017-04-21 10:54:21 +12:00 committed by GitHub
parent 2548bfba1e
commit 649dad526b

View File

@ -156,7 +156,7 @@ An example using the `MyFactory` service to create instances of the `MyService`
:::php
<?php
class MyFactory implements SilverStripe\Framework\Injector\Factory {
class MyFactory implements SilverStripe\Core\Injector\Factory {
public function create($service, array $params = array()) {
return new MyServiceImplementation();