Исправлен формат массива с текстурами, освежён код проекта

This commit is contained in:
ErickSkrauch
2015-10-15 14:01:23 +03:00
parent 800523aef2
commit 10be2a66ca
6 changed files with 74 additions and 77 deletions

View File

@@ -1,16 +1,18 @@
<?php
use Phalcon\Mvc\Micro;
error_reporting(E_ALL);
try {
/** @var \Phalcon\Config $config */
$config = include __DIR__ . "/../config/config.php";
$config = include __DIR__ . '/../config/config.php';
/** @var \Phalcon\Loader $loader */
include __DIR__ . '/../config/loader.php';
/** @var Phalcon\DI\FactoryDefault $di */
include __DIR__ . '/../config/services.php';
$app = new \Phalcon\Mvc\Micro($di);
$app = new Micro($di);
include __DIR__ . '/../app.php';
$app->handle();