From c01769aebd808b1fd769e6b7cce78ce1ed5d6f3a Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Sun, 10 Aug 2014 10:02:50 +0200 Subject: [PATCH] Add note to config for interfaces --- src/config/config.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/config/config.php b/src/config/config.php index 6925516..fee6985 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -71,6 +71,17 @@ return array( '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( '\Illuminate\Auth\UserInterface' => '\User', )