Skip to content

Commit

Permalink
Merge pull request #67 from koriym/1.0.0-rc.4
Browse files Browse the repository at this point in the history
1.0.0 rc.4
  • Loading branch information
koriym committed Apr 29, 2015
2 parents 0c7a47d + bd67513 commit 4e8ba40
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
namespace MyVendor\HelloWorld\Resource\Page;

use BEAR\Resource\ResourceInterface;
use BEAR\Resource\ResourceObject;
use BEAR\Sunday\Extension\Application\AppInterface;
use MyVendor\HelloWorld\AppModule;
use Ray\Di\Injector;

Expand Down
3 changes: 2 additions & 1 deletion src/Provide/Representation/RepresentationModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use BEAR\Resource\JsonRenderer;
use BEAR\Resource\RenderInterface;
use Ray\Di\AbstractModule;
use Ray\Di\Scope;

class RepresentationModule extends AbstractModule
{
Expand All @@ -17,6 +18,6 @@ class RepresentationModule extends AbstractModule
*/
protected function configure()
{
$this->bind(RenderInterface::class)->to(JsonRenderer::class);
$this->bind(RenderInterface::class)->to(JsonRenderer::class)->in(Scope::SINGLETON);
}
}
2 changes: 1 addition & 1 deletion src/Provide/Transfer/HttpResponderModule.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* This file is part of the *** package
* This file is part of the BEAR.Sunday package
*
* @license http://opensource.org/licenses/MIT MIT
*/
Expand Down
28 changes: 0 additions & 28 deletions tests/multiple_apps_Test.php

This file was deleted.

0 comments on commit 4e8ba40

Please sign in to comment.