From 5facb772eaa8ff5ec1acf3e68dd90ace7f68ba2c Mon Sep 17 00:00:00 2001 From: Hassan Althaf Date: Thu, 4 Dec 2014 11:13:08 +0530 Subject: [PATCH] Update 9-templating.md Change file name 'Renderable' to 'Engine' because the interface is not found by Auryn Auto Loader as it finds classes/interfaces by their file names. --- 9-templating.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/9-templating.md b/9-templating.md index 564e9c1..373303f 100644 --- a/9-templating.md +++ b/9-templating.md @@ -24,7 +24,7 @@ First let's define the interface that we want. Remember the [interface segregati So what does our template engine actually need to do? For now we really just need a simple `render` method. Create a new folder in your `src/` folder with the name `Template` where you can put all the template related things. -In there create a new interface `Renderable.php` that looks like this: +In there create a new interface `Engine.php` that looks like this: ```php >](10-dynamic-pages.md) \ No newline at end of file +[<< previous](8-dependency-injector.md) | [next >>](10-dynamic-pages.md)