From 2f935c070896c101ba48944764f70f2fc7ba76d3 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 10 Feb 2017 18:15:42 +0200 Subject: [PATCH] docs --- app/library/App/Bootstrap/CollectionBootstrap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/library/App/Bootstrap/CollectionBootstrap.php b/app/library/App/Bootstrap/CollectionBootstrap.php index 67ac50d..0ceda4e 100755 --- a/app/library/App/Bootstrap/CollectionBootstrap.php +++ b/app/library/App/Bootstrap/CollectionBootstrap.php @@ -18,11 +18,11 @@ class CollectionBootstrap implements BootstrapInterface public function run(Api $api, DiInterface $di, Config $config) { $api - ->collection(new ExportCollection('/export')) - ->resource(new UserResource('/users')) ->resource(new GaResource('/ga')) + ->resource(new UserResource('/users')) ->resource(new AlbumResource('/albums')) ->resource(new PhotoResource('/photos')) - ->resource(new ProjectResource('/projects')); + ->resource(new ProjectResource('/projects')) + ->collection(new ExportCollection('/export')); } } -- libgit2 0.21.4