<?php
$config = new Phalcon\Config(array(
/**
* Настройки подключения к базе данных
*/
'database' => array(
'host' => 'localhost',
'username' => 'root',
'password' => '',
'dbname' => 'allcash'
),
/**
* Настройка путей для Phalcon
*/
'phalcon' => array(
'controllersDir' => '../app/controllers/',
'modelsDir' => '../app/models/',
'helpersDir' => '../app/helpers/'
),
/**
* Настройки сайта
*/
'settings' => array(
'profit' => 22000,
'email' => 'support@funcash.ru',
'min_withdraw' => 100,
'max_withdraw' => 10000
));
Parse error: syntax error, unexpected ';' in W:\domains\allcash\app\config\config.php on line 36