PHP Classes

File: src/config/config.php

Recommend this page to a friend!
  Classes of Mohamed Ahmed   Feature Flag   src/config/config.php   Download  
File: src/config/config.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Feature Flag
Enable and disable features of Laravel application
Author: By
Last change:
Date: 4 days ago
Size: 283 bytes
 

Contents

Class file image Download
<?php
return [
   
'feature_flag' => [
       
'driver' => env('FEATURE_FLAG_DRIVER', 'eloquent'),
       
'notification_email' => env('FEATURE_FLAG_NOTIFICATION_EMAIL', 'admin@admin.com'),
       
'finish_date_action' => env('FEATURE_FLAG_FINISH_DATE_ACTION', 'exception'),
    ]
];