<?php

require_once dirname(__DIR__) . '/../vendor/autoload/UniversalClassLoader.class.php';
$loader = new UniversalClassLoader();
$loader->registerNamespaces(array('AppFlower\\Studio' => dirname(__DIR__) . '/vendor'));
$loader->register();
use AppFlower\Studio\Filesystem\Permissions;
/**
 * Studio Widget Command Class
 *
 * @package appFlowerStudio
 * @author Sergey Startsev <*****@*****.**>
 */
class afStudioWidgetCommand extends afBaseStudioCommand
{
    /**
     * Current module
     */
    private $module;
    /**
     * Current action
     */
    private $action;
    /**
     * Get widget functionality
     *
     * @return afResponse
     * @author Sergey Startsev
     */
    protected function processGet()
    {
示例#2
0
<?php

require_once 'vendor/UniversalClassLoader.php';
$loader = new UniversalClassLoader();
$loader->registerNamespaces(array('Codeception' => __DIR__ . '/src', 'Monolog' => __DIR__ . '/vendor', 'Symfony\\Component' => __DIR__ . '/vendor'));
$loader->register(true);
if (stream_resolve_include_path('PHPUnit/Autoload.php')) {
    include_once 'PHPUnit/Autoload.php';
}
if (stream_resolve_include_path('mink/autoload.php')) {
    include_once 'mink/autoload.php';
} elseif (file_exists('vendor/.composer/autoload.php') && !class_exists('Composer\\Autoload\\ClassLoader')) {
    include_once 'vendor/.composer/autoload.php';
}
示例#3
0
#!/usr/bin/env php
<?php 
Phar::mapPhar();
require_once 'phar://codecept.phar/vendor/UniversalClassLoader.php';
$loader = new UniversalClassLoader();
$loader->registerNamespaces(array('Codeception' => 'phar://codecept.phar/src/', 'Monolog' => 'phar://codecept.phar/vendor', 'Symfony\\Component' => 'phar://codecept.phar/vendor'));
$loader->register();
$loader->registerNamespaceFallbacks(array('phar://codecept.phar/vendor/Mink/vendor'));
// loading stub generators
require_once 'phar://codecept.phar/src/Codeception/Util/Stub/builders/phpunit/Stub.php';
@(include_once 'mink/autoload.php');
@(include_once 'PHPUnit/Autoload.php');
use Symfony\Component\Console\Application, Symfony\Component\Console\Input\InputInterface, Symfony\Component\Console\Input\InputDefinition, Symfony\Component\Console\Input\InputOption;
require_once 'phar://codecept.phar/codecept';
__halt_compiler();
示例#4
0
<?php

/**
 * Basic class loading to get the system going
 */
require_once 'Infrastructure/Symfony/src/Symfony/Component/UniversalClassLoader.php';
$oLoader = new UniversalClassLoader();
$oLoader->registerNamespaces(array('Application' => __DIR__ . 'Application', 'Domain' => __DIR__ . 'Domain', 'Symfony' => __DIR__ . 'Infrastructure/Symfony/src/Symfony', 'Doctrine\\Common' => __DIR__ . 'Infrastructure/Doctrine/Common/lib/Doctrine/Common', 'Doctrine\\DBAL' => __DIR__ . 'Infrastructure/Doctrine/DBAL/lib/Doctrine/DBAL', 'Doctrine\\ORM' => __DIR__ . 'Infrastructure/Doctrine/ORM/lib/Doctrine/ORM'));