allow a user to define the type overrides

This commit is contained in:
Andrew Ellis
2016-08-19 12:20:34 -06:00
parent 0a4ff969d2
commit f8c6ec95f6
2 changed files with 30 additions and 4 deletions
+16 -3
View File
@@ -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',
)
);