core.php 1.39 KB
<?php

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

namespace 
{
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    /**
     * core
     *
     * @author          Roman Telychko
     * @version         1.0.20130712
     */
    class core implements \Phalcon\DI\InjectionAwareInterface
    {
        ///////////////////////////////////////////////////////////////////////
    
        protected           $_di        = false;

        ///////////////////////////////////////////////////////////////////////


        public function setDi( $di )
        {
            $this->_di      = $di;
        }
        
        ///////////////////////////////////////////////////////////////////////

        public function getDi()
        {
            return $this->_di;
        }
        ///////////////////////////////////////////////////////////////////////
    }
    
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////   
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////