Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 695 Bytes

README.md

File metadata and controls

42 lines (27 loc) · 695 Bytes

sfContextBundle, The symfony's sfContext in Symfony2

Use the fantastic sfContext instance in your Symfony2 project.

Information

This bundle is a joke. Please do not use.

Installation

First, grab sfContextBundle using Composer:

composer require francisbesset/sfContextBundle:~1.0

Then register the bundle in the kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new sfContextBundle\sfContextBundle(),
    );
}

Usage

<?php
// any class, code
sfContext::getInstance()->getContainer();

ENJOY!