Completed
Push — master ( 13abb0...106f43 )
by mehdi
02:24
created
src/Config.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
        'Ordibehesht',
54 54
        'Khordad',
55 55
        'Tir',
56
-       'Mordad' ,
56
+       'Mordad',
57 57
        'Shahrivar',
58 58
        'Mehr',
59 59
        'Aban',
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      ),
79 79
 
80 80
   'islamic' =>
81
-    array(  1 => 'Muharram',
81
+    array(1 => 'Muharram',
82 82
             2 => 'Safar',
83 83
             3 => 'Rabi I',
84 84
             4 => 'Rabi II',
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
             12 => 'Dhu al_Hijjah'
93 93
             ) ),
94 94
 
95
-  'week_days_name' => array( 'persian' => array(
95
+  'week_days_name' => array('persian' => array(
96 96
                                           'Yekshanbe',
97 97
                                           'Doshanbe',
98 98
                                           'Seshanbe',
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                                           )
124 124
 
125 125
                       ),
126
-  'shamsi_month_days' => array(      1 => 31,
126
+  'shamsi_month_days' => array(1 => 31,
127 127
                                      2 => 31,
128 128
                                      3 => 31,
129 129
                                      4 => 31,
@@ -134,10 +134,10 @@  discard block
 block discarded – undo
134 134
                                      9 => 30,
135 135
                                      10 => 30,
136 136
                                      11 => 30,
137
-                                     12 => 29 ),
137
+                                     12 => 29),
138 138
 
139 139
 
140
-  'gregorian_month_days' => array(   1 => 31,
140
+  'gregorian_month_days' => array(1 => 31,
141 141
                                      2 => 28,
142 142
                                      3 => 31,
143 143
                                      4 => 30,
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
                                      9 => 30,
149 149
                                      10 => 31,
150 150
                                      11 => 30,
151
-                                     12 => 30 ),
151
+                                     12 => 30),
152 152
 
153
-  'islamic_month_days' => array(     1 => 30,
153
+  'islamic_month_days' => array(1 => 30,
154 154
                                      2 => 29,
155 155
                                      3 => 30,
156 156
                                      4 => 30,
@@ -161,13 +161,13 @@  discard block
 block discarded – undo
161 161
                                      9 => 30,
162 162
                                      10 => 29,
163 163
                                      11 => 30,
164
-                                     12 => 30 ),
164
+                                     12 => 30),
165 165
 
166 166
 
167
-    'date_interval' => array( 'D', 'M', 'Y', 'H', 'm', 'S' ),
167
+    'date_interval' => array('D', 'M', 'Y', 'H', 'm', 'S'),
168 168
 
169 169
 
170
-    'date_simple' => array( 'day', ' month', ' year', ' hour', ' minute', ' second' ),
170
+    'date_simple' => array('day', ' month', ' year', ' hour', ' minute', ' second'),
171 171
 
172 172
  );
173 173
 
Please login to merge, or discard this patch.
src/Events/Events.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
 
27 27
 	private static $date_end;
28 28
 
29
-	public function __construct( $date_time, $date_end = NULL ) {
29
+	public function __construct($date_time, $date_end = NULL) {
30 30
 
31
-		if( $date_end !== NULL ) {
31
+		if ($date_end !== NULL) {
32 32
 
33 33
 			Events::$date_start = $date_time;
34 34
 
@@ -56,19 +56,19 @@  discard block
 block discarded – undo
56 56
 	 *
57 57
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
58 58
 	 */
59
-	private function fetch( $path ) {
59
+	private function fetch($path) {
60 60
 
61
-		$this->events = include( $path );
61
+		$this->events = include($path);
62 62
 
63 63
 		$this->interval = DateInterval::createFromDateString('1 day');
64 64
 
65
-		$this->period = new DatePeriod( Events::$date_start, $this->interval, Events::$date_end );
65
+		$this->period = new DatePeriod(Events::$date_start, $this->interval, Events::$date_end);
66 66
 
67
-		foreach ( $this->period as $dt ) {
67
+		foreach ($this->period as $dt) {
68 68
 
69
-			if ( isset( $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ] ) ) {
69
+			if (isset($this->events['events'][intval($dt->format('m'))][intval($dt->format('d'))])) {
70 70
 
71
-				$this->result[ $dt->format( 'Y-m-d' ) ][] = $this->events[ 'events' ][ intval( $dt->format('m') ) ][ intval( $dt->format('d') ) ];
71
+				$this->result[$dt->format('Y-m-d')][] = $this->events['events'][intval($dt->format('m'))][intval($dt->format('d'))];
72 72
 
73 73
 			}
74 74
 
@@ -87,13 +87,13 @@  discard block
 block discarded – undo
87 87
 	 */
88 88
 	public function get() {
89 89
 
90
-		if( ! empty( $this->result ) ) {
90
+		if ( ! empty($this->result)) {
91 91
 
92
-			foreach( $this->result as $key => $day ) {
92
+			foreach ($this->result as $key => $day) {
93 93
 
94
-				if ( ! ( $key > Events::$date_start->format( 'Y-m-d' ) && $key < Events::$date_end->format( 'Y-m-d' ) ) ) {
94
+				if ( ! ($key > Events::$date_start->format('Y-m-d') && $key < Events::$date_end->format('Y-m-d'))) {
95 95
 
96
-					unset( $this->result[ $key ] );
96
+					unset($this->result[$key]);
97 97
 
98 98
 				}
99 99
 
@@ -118,49 +118,49 @@  discard block
 block discarded – undo
118 118
 		 *
119 119
 		 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
120 120
 		 */
121
-		public function local( $country_code = "ir" ) {
121
+		public function local($country_code = "ir") {
122 122
 
123 123
 				/*
124 124
 				 * Capitalize the first character of $country_code according the file
125 125
 				 * structure.
126 126
 				 */
127
-				$country_code = strtolower( $country_code = 'ir' ) ;
127
+				$country_code = strtolower($country_code = 'ir');
128 128
 
129
-				$this->local = include( 'Localization/' . $country_code . '.php' );
129
+				$this->local = include('Localization/'.$country_code.'.php');
130 130
 
131
-				foreach( $this->local[ 'events' ] as $month => $events ) {
131
+				foreach ($this->local['events'] as $month => $events) {
132 132
 
133
-					foreach( $events as $day => $event ){
133
+					foreach ($events as $day => $event) {
134 134
 
135 135
 						$this->date_time = new DateTime();
136 136
 
137
-						$this->date_time->setDate( Events::$date_start->format( 'Y' ), $month, $day );
137
+						$this->date_time->setDate(Events::$date_start->format('Y'), $month, $day);
138 138
 
139
-						switch ( $this->local[ 'default_calendar' ] ) {
139
+						switch ($this->local['default_calendar']) {
140 140
 
141 141
 							case 'shamsi':
142 142
 
143
-							$this->date_time->setDate( 1394, $month, $day );
143
+							$this->date_time->setDate(1394, $month, $day);
144 144
 
145
-							$this->date_time = $this->convert->shamsiToGregorian( $this->date_time );
145
+							$this->date_time = $this->convert->shamsiToGregorian($this->date_time);
146 146
 
147 147
 							break;
148 148
 
149 149
 							case 'ghamari':
150 150
 
151
-								$this->date_time = $this->convert->ghamariToGregorian( $this->date_time );
151
+								$this->date_time = $this->convert->ghamariToGregorian($this->date_time);
152 152
 
153 153
 							break;
154 154
 
155 155
 						}
156 156
 
157
-						$this->result[ $this->date_time->format( 'Y-m-d' ) ][] =  $event;
157
+						$this->result[$this->date_time->format('Y-m-d')][] = $event;
158 158
 
159 159
 					}
160 160
 
161 161
 				}
162 162
 
163
-				ksort( $this->result );
163
+				ksort($this->result);
164 164
 
165 165
 		return $this;
166 166
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 
181 181
 	public function international() {
182 182
 
183
-		$this->fetch( 'Global/global.php' );
183
+		$this->fetch('Global/global.php');
184 184
 
185 185
 		return $this;
186 186
 
Please login to merge, or discard this patch.
src/Events/Global/global.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      * @link http://www.un.org/en/sections/observances/international-days/
14 14
      */
15 15
     'events' => array(
16
-      1 => array( 27 => 'International Day of Commemoration in Memory of the Victims of the Holocaust' ),
16
+      1 => array(27 => 'International Day of Commemoration in Memory of the Victims of the Holocaust'),
17 17
       2 => array(
18 18
         4 => 'World Cancer Day',
19 19
         6 => 'International Day of Zero Tolerance to Female Genital Mutilation',
Please login to merge, or discard this patch.
src/Events/Localization/ir.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
      * as a arraye value
13 13
      */
14 14
     'events' => array(
15
-      1 => array( 1 => 'nowruz', 2 => 'nowruz', 3 => 'nowruz', 5 => 'nowruz' ),
16
-      10 => array( 22 => 'Iran revelution day' ),
17
-      12 => array( 29 => 'Iran oil national day' )
15
+      1 => array(1 => 'nowruz', 2 => 'nowruz', 3 => 'nowruz', 5 => 'nowruz'),
16
+      10 => array(22 => 'Iran revelution day'),
17
+      12 => array(29 => 'Iran oil national day')
18 18
     ),
19 19
 
20 20
 );
Please login to merge, or discard this patch.
src/Events/Localization/us.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,9 +9,9 @@
 block discarded – undo
9 9
 
10 10
   'events' => array(
11 11
 
12
-    4  => array( 22 => 'Earth day' ),
12
+    4  => array(22 => 'Earth day'),
13 13
 
14
-    12 => array( 25 => 'Christmas' )
14
+    12 => array(25 => 'Christmas')
15 15
 
16 16
   )
17 17
 
Please login to merge, or discard this patch.
src/Lang.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      *
34 34
      *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
35 35
      */
36
-    public static function get( $text ) {
36
+    public static function get($text) {
37 37
 
38 38
       /**
39 39
        * Fetch translated file to config attribute
@@ -43,11 +43,11 @@  discard block
 block discarded – undo
43 43
       /**
44 44
        * Fetch translated expression to langTable attribute
45 45
        */
46
-      self::$langTable = include('lang/' . self::$config['language'] . '/general.php');
46
+      self::$langTable = include('lang/'.self::$config['language'].'/general.php');
47 47
 
48
-      foreach( self::$langTable as $key => $translate ){
48
+      foreach (self::$langTable as $key => $translate) {
49 49
 
50
-        if( $key == $text ) {
50
+        if ($key == $text) {
51 51
 
52 52
           return $translate;
53 53
 
Please login to merge, or discard this patch.
src/lang/fa/general.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
   return array(
4 4
 
5
-       'events' => array( 'nowruz' => 'عید نوروز',
5
+       'events' => array('nowruz' => 'عید نوروز',
6 6
 
7 7
                           'iran_national_day' => 'روز جمهوری اسلامی',
8 8
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
                                     'شنبه',
35 35
                                   ),
36 36
 
37
-        'number' => array( '۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'),
37
+        'number' => array('۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'),
38 38
 
39 39
   );
40 40
 
Please login to merge, or discard this patch.
vendor/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 // autoload.php @generated by Composer
4 4
 
5
-require_once __DIR__ . '/composer' . '/autoload_real.php';
5
+require_once __DIR__.'/composer'.'/autoload_real.php';
6 6
 
7 7
 return ComposerAutoloaderInitac8bf09341946841246f06f2975982e0::getLoader();
Please login to merge, or discard this patch.
vendor/composer/autoload_real.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     public static function loadClassLoader($class)
10 10
     {
11 11
         if ('Composer\Autoload\ClassLoader' === $class) {
12
-            require __DIR__ . '/ClassLoader.php';
12
+            require __DIR__.'/ClassLoader.php';
13 13
         }
14 14
     }
15 15
 
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
         self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24 24
         spl_autoload_unregister(array('ComposerAutoloaderInitac8bf09341946841246f06f2975982e0', 'loadClassLoader'));
25 25
 
26
-        $map = require __DIR__ . '/autoload_namespaces.php';
26
+        $map = require __DIR__.'/autoload_namespaces.php';
27 27
         foreach ($map as $namespace => $path) {
28 28
             $loader->set($namespace, $path);
29 29
         }
30 30
 
31
-        $map = require __DIR__ . '/autoload_psr4.php';
31
+        $map = require __DIR__.'/autoload_psr4.php';
32 32
         foreach ($map as $namespace => $path) {
33 33
             $loader->setPsr4($namespace, $path);
34 34
         }
35 35
 
36
-        $classMap = require __DIR__ . '/autoload_classmap.php';
36
+        $classMap = require __DIR__.'/autoload_classmap.php';
37 37
         if ($classMap) {
38 38
             $loader->addClassMap($classMap);
39 39
         }
Please login to merge, or discard this patch.