Skip to content

Commit

Permalink
Added tests for #12783
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Jun 18, 2017
1 parent 38dfe52 commit f2ebf0c
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions tests/_data/di/SomeServiceProvider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2017 Phalcon Team (https://phalconphp.com) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
+------------------------------------------------------------------------+
*/

use Phalcon\DiInterface;
use Phalcon\Di\ServiceProviderInterface;

/**
* SomeServiceProvider
*/
class SomeServiceProvider implements ServiceProviderInterface
{
public function register(DiInterface $di)
{
require_once __DIR__ . DIRECTORY_SEPARATOR . 'SomeComponent.php';

$di['foo'] = function () {
return 'bar';
};

$di['fooAction'] = function () {
return new \SomeComponent('phalcon');
};
}
}

0 comments on commit f2ebf0c

Please sign in to comment.