PHP Classes

File: src/Container.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon for Symfony   src/Container.php   Download  
File: src/Container.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon for Symfony
Jaxon integration for the Symfony framework
Author: By
Last change:
Date: 2 years ago
Size: 1,460 bytes
 

Contents

Class file image Download
<?php

/**
 * Container.php - Dependency injection gateway
 *
 * @package jaxon-core
 * @author Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @copyright 2016 Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */

namespace Jaxon\AjaxBundle;

use
Psr\Container\ContainerInterface;
use
Symfony\Component\DependencyInjection\ContainerInterface as SymfonyContainerInterface;

class
Container implements ContainerInterface
{
   
/**
     * @var SymfonyContainerInterface $container
     */
   
protected $container;

   
/**
     * The constructor
     *
     * @param SymfonyContainerInterface $container
     */
   
public function __construct(SymfonyContainerInterface $container)
    {
       
$this->container = $container;
    }

   
/**
     * Check if a given class is defined in the container
     *
     * @param string $sClass A full class name
     *
     * @return bool
     */
   
public function has($sClass)
    {
        return
$this->container->has($sClass);
    }

   
/**
     * Get a class instance
     *
     * @param string $sClass A full class name
     *
     * @return mixed The class instance
     */
   
public function get($sClass)
    {
        return
$this->container->get($sClass, ContainerInterface::NULL_ON_INVALID_REFERENCE);
    }
}