Removed chr() references. The ASCII table does not change from platform to platform.
This commit is contained in:
parent
1c97dccaef
commit
077eab3a72
|
@ -7,7 +7,7 @@
|
||||||
* basic application, laravel, and public paths.
|
* basic application, laravel, and public paths.
|
||||||
*/
|
*/
|
||||||
define('EXT', '.php');
|
define('EXT', '.php');
|
||||||
define('CRLF', chr(13).chr(10));
|
define('CRLF', "\r\n");
|
||||||
define('BLADE_EXT', '.blade.php');
|
define('BLADE_EXT', '.blade.php');
|
||||||
define('APP_PATH', realpath($application).'/');
|
define('APP_PATH', realpath($application).'/');
|
||||||
define('PUBLIC_PATH', realpath($public).'/');
|
define('PUBLIC_PATH', realpath($public).'/');
|
||||||
|
|
Loading…
Reference in New Issue