mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
allow a user to define the type overrides
This commit is contained in:
+16
-3
@@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
@@ -71,7 +71,7 @@ return array(
|
||||
'emergency' => 'Monolog\Logger::addEmergency',
|
||||
)
|
||||
),
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Interface implementations
|
||||
@@ -81,7 +81,7 @@ return array(
|
||||
| are detected by the helpers, others can be listed below.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
'interfaces' => array(
|
||||
|
||||
),
|
||||
@@ -142,4 +142,17 @@ return array(
|
||||
*/
|
||||
'model_camel_case_properties' => false,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Property Casts
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Cast the given "real type" to the given "type".
|
||||
|
|
||||
*/
|
||||
'type_overrides' => array(
|
||||
// 'integer' => 'int',
|
||||
// 'boolean' => 'bool',
|
||||
)
|
||||
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user