Completed
Push — master ( 106f43...23f28a )
by mehdi
02:19
created
src/Events/Events.php 4 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@
 block discarded – undo
56 56
 	 *
57 57
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
58 58
 	 */
59
+
60
+	/**
61
+	 * @param string $path
62
+	 */
59 63
 	private function fetch( $path ) {
60 64
 
61 65
 		$this->events = include( $path );
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php namespace Datium;
2 2
 
3 3
 use Datium\Tools\Convert;
4
-use Datium\Tools\DayOf;
5 4
 use DateTime;
6 5
 use DateInterval;
7 6
 use DatePeriod;
Please login to merge, or discard this patch.
Indentation   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -8,47 +8,47 @@  discard block
 block discarded – undo
8 8
 
9 9
 class Events {
10 10
 
11
-	private $local;
11
+  private $local;
12 12
 
13
-	private $events;
13
+  private $events;
14 14
 
15
-	private $date_time;
15
+  private $date_time;
16 16
 
17
-	private $convert;
17
+  private $convert;
18 18
 
19
-	private $result;
19
+  private $result;
20 20
 
21
-	private $period;
21
+  private $period;
22 22
 
23
-	private $interval;
23
+  private $interval;
24 24
 
25
-	private static $date_start;
25
+  private static $date_start;
26 26
 
27
-	private static $date_end;
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
-			Events::$date_start = $date_time;
33
+      Events::$date_start = $date_time;
34 34
 
35
-			Events::$date_end = $date_end;
35
+      Events::$date_end = $date_end;
36 36
 
37
-		} else {
37
+    } else {
38 38
 
39
-			Events::$date_start = $date_time;
39
+      Events::$date_start = $date_time;
40 40
 
41
-		}
41
+    }
42 42
 
43
-		$this->convert = new Convert;
43
+    $this->convert = new Convert;
44 44
 
45
-		$this->date_time = new DateTime();
45
+    $this->date_time = new DateTime();
46 46
 
47
-		return $this;
47
+    return $this;
48 48
 
49
-	}
49
+  }
50 50
 
51
-	/************************************************************
51
+  /************************************************************
52 52
 	 * Fetch Events array from own array file
53 53
 	 ************************************************************
54 54
 	 *
@@ -56,27 +56,27 @@  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
-		$this->interval = DateInterval::createFromDateString('1 day');
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
 
75
-		}
75
+    }
76 76
 
77
-	}
77
+  }
78 78
 
79
-	/************************************************************
79
+  /************************************************************
80 80
 	 * Return Array of Events
81 81
 	 ************************************************************
82 82
 	 *
@@ -85,31 +85,31 @@  discard block
 block discarded – undo
85 85
 	 *
86 86
 	 *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
87 87
 	 */
88
-	public function get() {
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
 
100
-			}
100
+      }
101 101
 
102
-		} else {
102
+    } else {
103 103
 
104
-			$this->result = array();
104
+      $this->result = array();
105 105
 
106
-		}
106
+    }
107 107
 
108
-		return $this->result;
108
+    return $this->result;
109 109
 
110
-	}
110
+  }
111 111
 
112
-		/************************************************************
112
+    /************************************************************
113 113
 		 * Return local events - with day start and end as an array
114 114
 		 ************************************************************
115 115
 		 *
@@ -118,72 +118,72 @@  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
-						$this->date_time = new DateTime();
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
-							case 'shamsi':
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
-							break;
147
+              break;
148 148
 
149
-							case 'ghamari':
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
-							break;
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
-		return $this;
165
+    return $this;
166 166
 
167
-	}
167
+  }
168 168
 
169
-	public function weekend() {
169
+  public function weekend() {
170 170
 
171
-		return 0;
171
+    return 0;
172 172
 
173
-	}
173
+  }
174 174
 
175
-	public function relagious() {
175
+  public function relagious() {
176 176
 
177
-		return 0;
177
+    return 0;
178 178
 
179
-	}
179
+  }
180 180
 
181
-	public function international() {
181
+  public function international() {
182 182
 
183
-		$this->fetch( 'Global/global.php' );
183
+    $this->fetch( 'Global/global.php' );
184 184
 
185
-		return $this;
185
+    return $this;
186 186
 
187
-	}
187
+  }
188 188
 
189 189
 }
Please login to merge, or discard this 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/Leap.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
   /**
101 101
    * check the ghamari year is leap or not
102 102
    * @since Oct, 24 2015
103
-   * @return boolean
103
+   * @return integer|null
104 104
    */
105 105
   public function ghamariLeapYear() {
106 106
 
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
   /**
9 9
    * @param integer store year value
10 10
    */
11
-	protected $year;
11
+  protected $year;
12 12
 
13 13
   /**
14 14
    * @param string store type of year value
@@ -25,15 +25,15 @@  discard block
 block discarded – undo
25 25
    * @param $year integer
26 26
    * @since Aug, 21 2015
27 27
    */
28
-	public function __construct( $year, $type = 'gregorian' ) {
28
+  public function __construct( $year, $type = 'gregorian' ) {
29 29
 
30
-			$this->year = $year;
30
+      $this->year = $year;
31 31
 
32 32
       $this->type = $type;
33 33
 
34 34
       return $this;
35 35
 
36
-	}
36
+  }
37 37
 
38 38
   /**
39 39
    * check the gregorian year is leap or not
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
    */
54 54
   public function shamsiLeapYear() {
55 55
 
56
-		$shamsi_years = 0;
56
+    $shamsi_years = 0;
57 57
 
58 58
     while ( $shamsi_years < ( $this->year - 128 ) ) {
59 59
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     $this->result = $this->result % 33;
72 72
 
73
-   }
73
+    }
74 74
 
75 75
     if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) {
76 76
 
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
     $this->result = $this->result % 33;
89 89
 
90
-   }
90
+    }
91 91
 
92 92
     if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) {
93 93
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
        $this->result = $this->shamsiLeapYear();
134 134
 
135
-       break;
135
+        break;
136 136
 
137 137
       case 'ghamari':
138 138
 
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
    * @param $year integer
26 26
    * @since Aug, 21 2015
27 27
    */
28
-	public function __construct( $year, $type = 'gregorian' ) {
28
+	public function __construct($year, $type = 'gregorian') {
29 29
 
30 30
 			$this->year = $year;
31 31
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
    */
43 43
   public function gregorinLeapYear() {
44 44
 
45
-  return ( ( ( $this->year % 4 ) == 0 ) && ( ( ( $this->year % 100 ) != 0 ) || ( ( $this->year % 400 ) == 0 ) ) );
45
+  return ((($this->year % 4) == 0) && ((($this->year % 100) != 0) || (($this->year % 400) == 0)));
46 46
 
47 47
   }
48 48
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
 		$shamsi_years = 0;
57 57
 
58
-    while ( $shamsi_years < ( $this->year - 128 ) ) {
58
+    while ($shamsi_years < ($this->year - 128)) {
59 59
 
60 60
       $shamsi_years += 128;
61 61
 
@@ -66,13 +66,13 @@  discard block
 block discarded – undo
66 66
 
67 67
     $this->result -= $shamsi_years;
68 68
 
69
-    if ( $this->result >= 33 ) {
69
+    if ($this->result >= 33) {
70 70
 
71 71
     $this->result = $this->result % 33;
72 72
 
73 73
    }
74 74
 
75
-    if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) {
75
+    if (($this->result == 28) || ($this->result == 27)) {
76 76
 
77 77
       return $this->result;
78 78
 
@@ -83,13 +83,13 @@  discard block
 block discarded – undo
83 83
 
84 84
     $this->result -= $shamsi_years;
85 85
 
86
-    if ( $this->result >= 33 ) {
86
+    if ($this->result >= 33) {
87 87
 
88 88
     $this->result = $this->result % 33;
89 89
 
90 90
    }
91 91
 
92
-    if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) {
92
+    if ((($this->result % 4) == 0) && ($this->result != 28)) {
93 93
 
94 94
       return $this->result;
95 95
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 
106 106
     $this->result = $this->year % 30;
107 107
 
108
-    if ( ( 2 == $this->result ) || ( 5 == $this->result ) || ( 7 == $this->result ) || ( 10 == $this->result ) || ( 13 == $this->result ) || ( 16 == $this->result ) || ( 18 == $this->result ) || ( 21 == $this->result ) || ( 24 == $this->year ) || ( 26 == $this->result ) || ( 29 == $this->result ) ) {
108
+    if ((2 == $this->result) || (5 == $this->result) || (7 == $this->result) || (10 == $this->result) || (13 == $this->result) || (16 == $this->result) || (18 == $this->result) || (21 == $this->result) || (24 == $this->year) || (26 == $this->result) || (29 == $this->result)) {
109 109
 
110 110
       return $this->result;
111 111
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
    */
121 121
   public function get() {
122 122
 
123
-    switch ( $this->type ) {
123
+    switch ($this->type) {
124 124
 
125 125
       case 'gregorian':
126 126
 
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 2 patches
Indentation   +11 added lines, -11 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
 
@@ -12,16 +12,16 @@  discard block
 block discarded – undo
12 12
         'month' => array(
13 13
                           'فروردین',
14 14
                           'اردیبهشت',
15
-                           'خرداد',
16
-                           'تیر',
17
-                           'مرداد',
18
-                           'شهریور',
19
-                           'مهر',
20
-                           'آبان',
21
-                           'آذر',
22
-                           'دی',
23
-                           'بهمن',
24
-                           'اسفند',
15
+                            'خرداد',
16
+                            'تیر',
17
+                            'مرداد',
18
+                            'شهریور',
19
+                            'مهر',
20
+                            'آبان',
21
+                            'آذر',
22
+                            'دی',
23
+                            'بهمن',
24
+                            'اسفند',
25 25
                         ),
26 26
 
27 27
         'week_days_name' => array(
Please login to merge, or discard this 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/composer/ClassLoader.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -341,6 +341,10 @@
 block discarded – undo
341 341
         return $file;
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $class
346
+     * @param string $ext
347
+     */
344 348
     private function findFileWithExtension($class, $ext)
345 349
     {
346 350
         // PSR-4 lookup
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     public function getPrefixes()
60 60
     {
61
-        if (!empty($this->prefixesPsr0)) {
61
+        if ( ! empty($this->prefixesPsr0)) {
62 62
             return call_user_func_array('array_merge', $this->prefixesPsr0);
63 63
         }
64 64
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function add($prefix, $paths, $prepend = false)
109 109
     {
110
-        if (!$prefix) {
110
+        if ( ! $prefix) {
111 111
             if ($prepend) {
112 112
                 $this->fallbackDirsPsr0 = array_merge(
113 113
                     (array) $paths,
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         }
125 125
 
126 126
         $first = $prefix[0];
127
-        if (!isset($this->prefixesPsr0[$first][$prefix])) {
127
+        if ( ! isset($this->prefixesPsr0[$first][$prefix])) {
128 128
             $this->prefixesPsr0[$first][$prefix] = (array) $paths;
129 129
 
130 130
             return;
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public function addPsr4($prefix, $paths, $prepend = false)
156 156
     {
157
-        if (!$prefix) {
157
+        if ( ! $prefix) {
158 158
             // Register directories for the root namespace.
159 159
             if ($prepend) {
160 160
                 $this->fallbackDirsPsr4 = array_merge(
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
                     (array) $paths
168 168
                 );
169 169
             }
170
-        } elseif (!isset($this->prefixDirsPsr4[$prefix])) {
170
+        } elseif ( ! isset($this->prefixDirsPsr4[$prefix])) {
171 171
             // Register directories for a new namespace.
172 172
             $length = strlen($prefix);
173 173
             if ('\\' !== $prefix[$length - 1]) {
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
      */
200 200
     public function set($prefix, $paths)
201 201
     {
202
-        if (!$prefix) {
202
+        if ( ! $prefix) {
203 203
             $this->fallbackDirsPsr0 = (array) $paths;
204 204
         } else {
205 205
             $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      */
218 218
     public function setPsr4($prefix, $paths)
219 219
     {
220
-        if (!$prefix) {
220
+        if ( ! $prefix) {
221 221
             $this->fallbackDirsPsr4 = (array) $paths;
222 222
         } else {
223 223
             $length = strlen($prefix);
@@ -344,14 +344,14 @@  discard block
 block discarded – undo
344 344
     private function findFileWithExtension($class, $ext)
345 345
     {
346 346
         // PSR-4 lookup
347
-        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
347
+        $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext;
348 348
 
349 349
         $first = $class[0];
350 350
         if (isset($this->prefixLengthsPsr4[$first])) {
351 351
             foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
352 352
                 if (0 === strpos($class, $prefix)) {
353 353
                     foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354
-                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
354
+                        if (file_exists($file = $dir.DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $length))) {
355 355
                             return $file;
356 356
                         }
357 357
                     }
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 
362 362
         // PSR-4 fallback dirs
363 363
         foreach ($this->fallbackDirsPsr4 as $dir) {
364
-            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
364
+            if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) {
365 365
                 return $file;
366 366
             }
367 367
         }
@@ -373,14 +373,14 @@  discard block
 block discarded – undo
373 373
                 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
374 374
         } else {
375 375
             // PEAR-like class name
376
-            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
376
+            $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext;
377 377
         }
378 378
 
379 379
         if (isset($this->prefixesPsr0[$first])) {
380 380
             foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
381 381
                 if (0 === strpos($class, $prefix)) {
382 382
                     foreach ($dirs as $dir) {
383
-                        if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
383
+                        if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) {
384 384
                             return $file;
385 385
                         }
386 386
                     }
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 
391 391
         // PSR-0 fallback dirs
392 392
         foreach ($this->fallbackDirsPsr0 as $dir) {
393
-            if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
393
+            if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) {
394 394
                 return $file;
395 395
             }
396 396
         }
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.