From e8577baf53b007b211fe96f15b7905bdea9d9670 Mon Sep 17 00:00:00 2001 From: Mohamed Kawsara Date: Thu, 31 Mar 2016 15:53:29 +0300 Subject: [PATCH] Minor change where config file is PSR-2 now --- src/config/config.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/config/config.php b/src/config/config.php index 7b0ac5b..11e768d 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -1,17 +1,17 @@ array( - 'environment' =>'development', - 'certificate' =>'/path/to/certificate.pem', - 'passPhrase' =>'password', - 'service' =>'apns' - ), - 'appNameAndroid' => array( - 'environment' =>'production', - 'apiKey' =>'yourAPIKey', - 'service' =>'gcm' - ) + 'appNameIOS' => [ + 'environment' => 'development', + 'certificate' => '/path/to/certificate.pem', + 'passPhrase' => 'password', + 'service' => 'apns', + ], + 'appNameAndroid' => [ + 'environment' => 'production', + 'apiKey' => 'yourAPIKey', + 'service' => 'gcm', + ], -); \ No newline at end of file +];