| 
<?php
 /*
 +------------------------------------------------------------------------+
 | Phalcon Developer Tools                                                |
 +------------------------------------------------------------------------+
 | Copyright (c) 2011-2014 Phalcon Team (http://www.phalconphp.com)       |
 +------------------------------------------------------------------------+
 | This source file is subject to the New BSD License that is bundled     |
 | with this package in the file docs/LICENSE.txt.                        |
 |                                                                        |
 | If you did not receive a copy of the license and are unable to         |
 | obtain it through the world-wide-web, please send an email             |
 | to license@phalconphp.com so we can send you a copy immediately.       |
 +------------------------------------------------------------------------+
 | Authors: Andres Gutierrez <andres@phalconphp.com>                      |
 |          Eduar Carvajal <eduar@phalconphp.com>                         |
 +------------------------------------------------------------------------+
 */
 
 /**
 * Phalcon Developers Tools can only be used in local machines, however
 * you can set this to allow certain IP address.
 *
 * For example:
 *   192.168.0.1 or SUBNET 192., 10.0.2., 86.84.124.
 *
 * @var string
 */
 define('PTOOLS_IP', '192.168.');
 
 // ---------------------------- DO NOT EDIT BELOW ------------------------------
 
 /**
 * The path to the Phalcon Developers Tools.
 *
 * @var string
 */
 define('PTOOLSPATH', '@@PATH@@');
 
 |