| @@ -70,7 +70,7 @@ discard block | ||
| 70 | 70 | |
| 71 | 71 | /** | 
| 72 | 72 | * @since Sept, 14 2015 | 
| 73 | - * @return integer | |
| 73 | + * @return double | |
| 74 | 74 | */ | 
| 75 | 75 |    protected function persian_day_of_year() { | 
| 76 | 76 | |
| @@ -93,7 +93,7 @@ discard block | ||
| 93 | 93 | |
| 94 | 94 | /** | 
| 95 | 95 | * @since Sept, 14 2015 | 
| 96 | - * @return integer | |
| 96 | + * @return double | |
| 97 | 97 | */ | 
| 98 | 98 |    protected function islamic_day_of_year() { | 
| 99 | 99 | |
| @@ -19,9 +19,9 @@ discard block | ||
| 19 | 19 | |
| 20 | 20 | protected $geregorian_DayofWeek; | 
| 21 | 21 | |
| 22 | -  public function __construct( $date_time, $calendar_type = 'ir' ) { | |
| 22 | +  public function __construct($date_time, $calendar_type = 'ir') { | |
| 23 | 23 | |
| 24 | - $this->config = include( 'Config.php' ); | |
| 24 | +    $this->config = include('Config.php'); | |
| 25 | 25 | |
| 26 | 26 | $this->date_time = $date_time; | 
| 27 | 27 | |
| @@ -42,7 +42,7 @@ discard block | ||
| 42 | 42 | */ | 
| 43 | 43 |    public function year() { | 
| 44 | 44 | |
| 45 | -    switch ( $this->calendar_type ) { | |
| 45 | +    switch ($this->calendar_type) { | |
| 46 | 46 | |
| 47 | 47 | case 'ir': | 
| 48 | 48 | |
| @@ -58,7 +58,7 @@ discard block | ||
| 58 | 58 | |
| 59 | 59 | case 'gr': | 
| 60 | 60 | |
| 61 | -      $this->result = date( 'z', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1; | |
| 61 | +      $this->result = date('z', strtotime($this->date_time->format('Y-m-d H:i:s'))) + 1; | |
| 62 | 62 | |
| 63 | 63 | break; | 
| 64 | 64 | } | 
| @@ -78,9 +78,9 @@ discard block | ||
| 78 | 78 | |
| 79 | 79 |      $this->day = $this->date_time->format('d'); | 
| 80 | 80 | |
| 81 | -    foreach( $this->config['shamsi_month_days'] as $month => $value ) { | |
| 81 | +    foreach ($this->config['shamsi_month_days'] as $month => $value) { | |
| 82 | 82 | |
| 83 | - if ( $month < $this->month ) $this->result += $value; | |
| 83 | + if ($month < $this->month) $this->result += $value; | |
| 84 | 84 | |
| 85 | 85 | } | 
| 86 | 86 | |
| @@ -101,9 +101,9 @@ discard block | ||
| 101 | 101 | |
| 102 | 102 |      $this->day = $this->date_time->format('d'); | 
| 103 | 103 | |
| 104 | -    foreach( $this->config['islamic_month_days'] as $month => $value ) { | |
| 104 | +    foreach ($this->config['islamic_month_days'] as $month => $value) { | |
| 105 | 105 | |
| 106 | - if ( $month < $this->month ) $this->result += $value; | |
| 106 | + if ($month < $this->month) $this->result += $value; | |
| 107 | 107 | |
| 108 | 108 | } | 
| 109 | 109 | |
| @@ -120,7 +120,7 @@ discard block | ||
| 120 | 120 | */ | 
| 121 | 121 |    public function week() { | 
| 122 | 122 | |
| 123 | -    switch ( $this->calendar_type ) { | |
| 123 | +    switch ($this->calendar_type) { | |
| 124 | 124 | |
| 125 | 125 | case 'ir': | 
| 126 | 126 | |
| @@ -136,7 +136,7 @@ discard block | ||
| 136 | 136 | |
| 137 | 137 | case 'gr': | 
| 138 | 138 | |
| 139 | -      $this->result = date( 'w', strtotime( $this->date_time->format('Y-m-d H:i:s') ) ) + 1; | |
| 139 | +      $this->result = date('w', strtotime($this->date_time->format('Y-m-d H:i:s'))) + 1; | |
| 140 | 140 | |
| 141 | 141 | break; | 
| 142 | 142 | } | 
| @@ -151,11 +151,11 @@ discard block | ||
| 151 | 151 | */ | 
| 152 | 152 |    protected function persian_day_of_week() { | 
| 153 | 153 | |
| 154 | - $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['persian'], $this->day); | |
| 154 | + $this->day = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['persian'], $this->day); | |
| 155 | 155 | |
| 156 | -    foreach ( $this->config['week_days_name']['persian'] as $key => $value ) { | |
| 156 | +    foreach ($this->config['week_days_name']['persian'] as $key => $value) { | |
| 157 | 157 | |
| 158 | - if( $value == $this->day ) return $key += 1; | |
| 158 | + if ($value == $this->day) return $key += 1; | |
| 159 | 159 | |
| 160 | 160 | } | 
| 161 | 161 | |
| @@ -167,11 +167,11 @@ discard block | ||
| 167 | 167 | */ | 
| 168 | 168 |    protected function islamic_day_of_week() { | 
| 169 | 169 | |
| 170 | - $this->day = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day); | |
| 170 | + $this->day = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->geregorian_DayofWeek], $this->day); | |
| 171 | 171 | |
| 172 | -    foreach ( $this->config['week_days_name']['islamic'] as $key => $value ) { | |
| 172 | +    foreach ($this->config['week_days_name']['islamic'] as $key => $value) { | |
| 173 | 173 | |
| 174 | - if( $value == $this->day ) return $key += 1; | |
| 174 | + if ($value == $this->day) return $key += 1; | |
| 175 | 175 | |
| 176 | 176 | } | 
| 177 | 177 | |
| @@ -56,6 +56,10 @@ | ||
| 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 ); | 
| @@ -26,9 +26,9 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | |
| @@ -100,7 +100,7 @@ | ||
| 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 | |
| @@ -25,7 +25,7 @@ discard block | ||
| 25 | 25 | * @param $year integer | 
| 26 | 26 | * @since Aug, 21 2015 | 
| 27 | 27 | */ | 
| 28 | -	public function __construct( $year, $type = 'gr' ) { | |
| 28 | +	public function __construct($year, $type = 'gr') { | |
| 29 | 29 | |
| 30 | 30 | $this->year = $year; | 
| 31 | 31 | |
| @@ -43,7 +43,7 @@ discard block | ||
| 43 | 43 | */ | 
| 44 | 44 |    public function gregorinLeapYear() { | 
| 45 | 45 | |
| 46 | - return ( ( ( $this->year % 4 ) == 0 ) && ( ( ( $this->year % 100 ) != 0 ) || ( ( $this->year % 400 ) == 0 ) ) ); | |
| 46 | + return ((($this->year % 4) == 0) && ((($this->year % 100) != 0) || (($this->year % 400) == 0))); | |
| 47 | 47 | |
| 48 | 48 | } | 
| 49 | 49 | |
| @@ -56,7 +56,7 @@ discard block | ||
| 56 | 56 | |
| 57 | 57 | $shamsi_years = 0; | 
| 58 | 58 | |
| 59 | -    while ( $shamsi_years < ( $this->year - 128 ) ) { | |
| 59 | +    while ($shamsi_years < ($this->year - 128)) { | |
| 60 | 60 | |
| 61 | 61 | $shamsi_years += 128; | 
| 62 | 62 | |
| @@ -67,13 +67,13 @@ discard block | ||
| 67 | 67 | |
| 68 | 68 | $this->result -= $shamsi_years; | 
| 69 | 69 | |
| 70 | -    if ( $this->result >= 33 ) { | |
| 70 | +    if ($this->result >= 33) { | |
| 71 | 71 | |
| 72 | 72 | $this->result = $this->result % 33; | 
| 73 | 73 | |
| 74 | 74 | } | 
| 75 | 75 | |
| 76 | -    if ( ( $this->result == 28 ) || ( $this->result == 27 ) ) { | |
| 76 | +    if (($this->result == 28) || ($this->result == 27)) { | |
| 77 | 77 | |
| 78 | 78 | return $this->result; | 
| 79 | 79 | |
| @@ -84,13 +84,13 @@ discard block | ||
| 84 | 84 | |
| 85 | 85 | $this->result -= $shamsi_years; | 
| 86 | 86 | |
| 87 | -    if ( $this->result >= 33 ) { | |
| 87 | +    if ($this->result >= 33) { | |
| 88 | 88 | |
| 89 | 89 | $this->result = $this->result % 33; | 
| 90 | 90 | |
| 91 | 91 | } | 
| 92 | 92 | |
| 93 | -    if ( ( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) { | |
| 93 | +    if ((($this->result % 4) == 0) && ($this->result != 28)) { | |
| 94 | 94 | |
| 95 | 95 | return $this->result; | 
| 96 | 96 | |
| @@ -106,7 +106,7 @@ discard block | ||
| 106 | 106 | |
| 107 | 107 | $this->result = $this->year % 30; | 
| 108 | 108 | |
| 109 | -    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 | +    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)) { | |
| 110 | 110 | |
| 111 | 111 | return $this->result; | 
| 112 | 112 | |
| @@ -121,7 +121,7 @@ discard block | ||
| 121 | 121 | */ | 
| 122 | 122 |    public function get() { | 
| 123 | 123 | |
| 124 | -    switch ( $this->type ) { | |
| 124 | +    switch ($this->type) { | |
| 125 | 125 | |
| 126 | 126 | case 'gr': | 
| 127 | 127 | |
| @@ -20,6 +20,9 @@ | ||
| 20 | 20 | |
| 21 | 21 | protected $english_number = array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' ); | 
| 22 | 22 | |
| 23 | + /** | |
| 24 | + * @param \DateTime $date_time | |
| 25 | + */ | |
| 23 | 26 |    public function __construct( $date_time, $calendar, $format, $gregorian_DayofWeek ){ | 
| 24 | 27 | |
| 25 | 28 | $this->translate = include( 'lang/fa/general.php' ); | 
| @@ -18,13 +18,13 @@ discard block | ||
| 18 | 18 | |
| 19 | 19 | protected $gregorian_DayofWeek; | 
| 20 | 20 | |
| 21 | - protected $english_number = array( '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' ); | |
| 21 | +  protected $english_number = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9'); | |
| 22 | 22 | |
| 23 | -  public function __construct( $date_time, $calendar, $format, $gregorian_DayofWeek ){ | |
| 23 | +  public function __construct($date_time, $calendar, $format, $gregorian_DayofWeek) { | |
| 24 | 24 | |
| 25 | - $this->translate = include( 'lang/fa/general.php' ); | |
| 25 | +    $this->translate = include('lang/fa/general.php'); | |
| 26 | 26 | |
| 27 | - $this->config = include( 'Config.php' ); | |
| 27 | +    $this->config = include('Config.php'); | |
| 28 | 28 | |
| 29 | 29 | $this->date_time = $date_time; | 
| 30 | 30 | |
| @@ -38,13 +38,13 @@ discard block | ||
| 38 | 38 | |
| 39 | 39 | } | 
| 40 | 40 | |
| 41 | -  protected function format( $calendar, $format ) { | |
| 41 | +  protected function format($calendar, $format) { | |
| 42 | 42 | |
| 43 | - $this->date_time = $this->date_time->format( $format ); | |
| 43 | + $this->date_time = $this->date_time->format($format); | |
| 44 | 44 | |
| 45 | -    if( in_array( $calendar, $this->config['calendar'] ) ) { | |
| 45 | +    if (in_array($calendar, $this->config['calendar'])) { | |
| 46 | 46 | |
| 47 | -    switch( $calendar ){ | |
| 47 | +    switch ($calendar) { | |
| 48 | 48 | |
| 49 | 49 | case 'ir': | 
| 50 | 50 | |
| @@ -74,25 +74,25 @@ discard block | ||
| 74 | 74 | |
| 75 | 75 |    protected function translateToPersian() { | 
| 76 | 76 | |
| 77 | - $this->date_time = str_replace( $this->config['month']['english'], $this->config['month']['persian'], $this->date_time ); | |
| 77 | + $this->date_time = str_replace($this->config['month']['english'], $this->config['month']['persian'], $this->date_time); | |
| 78 | 78 | |
| 79 | - $this->date_time = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['persian'][$this->gregorian_DayofWeek], $this->date_time ); | |
| 79 | + $this->date_time = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['persian'][$this->gregorian_DayofWeek], $this->date_time); | |
| 80 | 80 | |
| 81 | - $this->date_time = str_replace( $this->english_number , $this->translate['number'], $this->date_time ); | |
| 81 | + $this->date_time = str_replace($this->english_number, $this->translate['number'], $this->date_time); | |
| 82 | 82 | |
| 83 | - $this->date_time = str_replace( $this->config['month']['persian'], $this->translate['month'], $this->date_time ); | |
| 83 | + $this->date_time = str_replace($this->config['month']['persian'], $this->translate['month'], $this->date_time); | |
| 84 | 84 | |
| 85 | - $this->date_time = str_replace( $this->config['week_days_name']['persian'], $this->translate['week_days_name'], $this->date_time ); | |
| 85 | + $this->date_time = str_replace($this->config['week_days_name']['persian'], $this->translate['week_days_name'], $this->date_time); | |
| 86 | 86 | |
| 87 | - $this->date_time = str_replace( 'th', 'ام', $this->date_time ); | |
| 87 | +    $this->date_time = str_replace('th', 'ام', $this->date_time); | |
| 88 | 88 | |
| 89 | - $this->date_time = str_replace( 'AM', 'قبل از ظهر', $this->date_time ); | |
| 89 | +    $this->date_time = str_replace('AM', 'قبل از ظهر', $this->date_time); | |
| 90 | 90 | |
| 91 | - $this->date_time = str_replace( 'am', 'ق.ظ', $this->date_time ); | |
| 91 | +    $this->date_time = str_replace('am', 'ق.ظ', $this->date_time); | |
| 92 | 92 | |
| 93 | - $this->date_time = str_replace( 'PM', 'بعد از ظهر', $this->date_time ); | |
| 93 | +    $this->date_time = str_replace('PM', 'بعد از ظهر', $this->date_time); | |
| 94 | 94 | |
| 95 | - $this->date_time = str_replace( 'pm', 'ب.ظ', $this->date_time ); | |
| 95 | +    $this->date_time = str_replace('pm', 'ب.ظ', $this->date_time); | |
| 96 | 96 | |
| 97 | 97 | return $this->date_time; | 
| 98 | 98 | |
| @@ -100,9 +100,9 @@ discard block | ||
| 100 | 100 | |
| 101 | 101 |    protected function translateToArabic() { | 
| 102 | 102 | |
| 103 | - $this->date_time = str_replace( $this->config['month']['english'], $this->config['month']['islamic'], $this->date_time ); | |
| 103 | + $this->date_time = str_replace($this->config['month']['english'], $this->config['month']['islamic'], $this->date_time); | |
| 104 | 104 | |
| 105 | - $this->date_time = str_replace( $this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->gregorian_DayofWeek], $this->date_time ); | |
| 105 | + $this->date_time = str_replace($this->config['week_days_name']['english'], $this->config['week_days_name']['islamic'][$this->gregorian_DayofWeek], $this->date_time); | |
| 106 | 106 | |
| 107 | 107 | return $this->date_time; | 
| 108 | 108 | } | 
| @@ -116,7 +116,7 @@ discard block | ||
| 116 | 116 | |
| 117 | 117 | public function get() | 
| 118 | 118 |    { | 
| 119 | - return $this->format( $this->calendar, $this->format ); | |
| 119 | + return $this->format($this->calendar, $this->format); | |
| 120 | 120 | } | 
| 121 | 121 | |
| 122 | 122 | |
| @@ -53,7 +53,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | |
| @@ -13,7 +13,7 @@ | ||
| 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', | 
| @@ -12,9 +12,9 @@ | ||
| 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 | ); | 
| @@ -9,9 +9,9 @@ | ||
| 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 | |
| @@ -33,7 +33,7 @@ discard block | ||
| 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 | ||
| 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 | |