Commit 86f03d89 authored by Igor Wiedler's avatar Igor Wiedler

[docs] missing use statement in extension docs

parent 8341f739
...@@ -87,6 +87,7 @@ Here is an example of such an extension:: ...@@ -87,6 +87,7 @@ Here is an example of such an extension::
namespace Acme; namespace Acme;
use Silex\Application;
use Silex\ExtensionInterface; use Silex\ExtensionInterface;
class HelloExtension implements ExtensionInterface class HelloExtension implements ExtensionInterface
...@@ -139,6 +140,7 @@ Here is an example of how to use it (based on `Buzz <https://github.com/kriswall ...@@ -139,6 +140,7 @@ Here is an example of how to use it (based on `Buzz <https://github.com/kriswall
namespace Acme; namespace Acme;
use Silex\Application;
use Silex\ExtensionInterface; use Silex\ExtensionInterface;
class BuzzExtension implements ExtensionInterface class BuzzExtension implements ExtensionInterface
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment