@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | public function all() |
| 172 | 172 | { |
| 173 | 173 | |
| 174 | - return ( object )array( |
|
| 174 | + return (object) array( |
|
| 175 | 175 | |
| 176 | 176 | 'second' => $this->date_time->format('s'), |
| 177 | 177 | |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | |
| 392 | 392 | $difference->year = $difference->y; |
| 393 | 393 | |
| 394 | - $difference->simple = ( new SimpleDiff( $start, $end, $difference ) ); |
|
| 394 | + $difference->simple = (new SimpleDiff($start, $end, $difference)); |
|
| 395 | 395 | |
| 396 | 396 | return $difference; |
| 397 | 397 | |
@@ -590,7 +590,7 @@ discard block |
||
| 590 | 590 | public function get($format = 'Y-m-d H:i:s') |
| 591 | 591 | { |
| 592 | 592 | |
| 593 | - if( $format === 'timestamp' ) { |
|
| 593 | + if ($format === 'timestamp') { |
|
| 594 | 594 | |
| 595 | 595 | return $this->timestamp(); |
| 596 | 596 | |
@@ -44,17 +44,17 @@ discard block |
||
| 44 | 44 | /** |
| 45 | 45 | * Fetch translated file to config attribute |
| 46 | 46 | */ |
| 47 | - self::$config = include __DIR__ . '/CalendarSettings/Jalali.php'; |
|
| 47 | + self::$config = include __DIR__.'/CalendarSettings/Jalali.php'; |
|
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * Fetch translated expression to langTable attribute |
| 51 | 51 | */ |
| 52 | - self::$langTable = include __DIR__ . '/lang/' . $language . '/general.php'; |
|
| 52 | + self::$langTable = include __DIR__.'/lang/'.$language.'/general.php'; |
|
| 53 | 53 | |
| 54 | 54 | foreach (self::$langTable as $key => $translate) { |
| 55 | - if (isset(self::$config[ $key ])) { |
|
| 56 | - if (self::$config[ $key ]) { |
|
| 57 | - self::$config[ $key ] = $translate; |
|
| 55 | + if (isset(self::$config[$key])) { |
|
| 56 | + if (self::$config[$key]) { |
|
| 57 | + self::$config[$key] = $translate; |
|
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | public static function get($lang, $value) |
| 72 | 72 | { |
| 73 | 73 | |
| 74 | - $file = include( __DIR__ . '/lang/' . $lang . '/general.php'); |
|
| 74 | + $file = include(__DIR__.'/lang/'.$lang.'/general.php'); |
|
| 75 | 75 | |
| 76 | 76 | return $file[$value]; |
| 77 | 77 | |
@@ -83,14 +83,14 @@ discard block |
||
| 83 | 83 | * @param integer $numbers |
| 84 | 84 | * @return string |
| 85 | 85 | */ |
| 86 | - public static function getNumbers( $lang, $numbers ) |
|
| 86 | + public static function getNumbers($lang, $numbers) |
|
| 87 | 87 | { |
| 88 | 88 | |
| 89 | 89 | $result = null; |
| 90 | 90 | |
| 91 | - $file = include( __DIR__ . '/lang/' . $lang . '/general.php'); |
|
| 91 | + $file = include(__DIR__.'/lang/'.$lang.'/general.php'); |
|
| 92 | 92 | |
| 93 | - foreach( str_split( $numbers, 1 ) as $key => $value ) { |
|
| 93 | + foreach (str_split($numbers, 1) as $key => $value) { |
|
| 94 | 94 | |
| 95 | 95 | $result .= $file[$value]; |
| 96 | 96 | |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | public function __construct($date_time, $calendar_type = 'gregorian') |
| 29 | 29 | { |
| 30 | 30 | |
| 31 | - $this->config = include __DIR__.'/CalendarSettings/' . ucfirst($calendar_type) . '.php'; |
|
| 31 | + $this->config = include __DIR__.'/CalendarSettings/'.ucfirst($calendar_type).'.php'; |
|
| 32 | 32 | |
| 33 | 33 | $this->calendar_type = $calendar_type; |
| 34 | 34 | |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | public function year() |
| 48 | 48 | { |
| 49 | 49 | |
| 50 | - return $this->config[ 'day_of_year' ]( $this->date_time ); |
|
| 50 | + return $this->config['day_of_year']($this->date_time); |
|
| 51 | 51 | |
| 52 | 52 | } |
| 53 | 53 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | public function week() |
| 62 | 62 | { |
| 63 | 63 | |
| 64 | - return $this->config[ 'day_of_week' ]( $this->date_time ); |
|
| 64 | + return $this->config['day_of_week']($this->date_time); |
|
| 65 | 65 | |
| 66 | 66 | } |
| 67 | 67 | |
@@ -75,29 +75,27 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | $days = 0; |
| 77 | 77 | |
| 78 | - switch ( $this->calendar_type ) { |
|
| 78 | + switch ($this->calendar_type) { |
|
| 79 | 79 | |
| 80 | 80 | case 'gregorian': |
| 81 | 81 | |
| 82 | - $days = ( intval( $this->date_time->format( 'm' ) ) == 2 && |
|
| 83 | - $this->config[ 'leap_year' ]( $this->date_time->format( 'Y' )) ) ? |
|
| 84 | - $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ] + 1 : |
|
| 85 | - $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ]; |
|
| 82 | + $days = (intval($this->date_time->format('m')) == 2 && |
|
| 83 | + $this->config['leap_year']($this->date_time->format('Y'))) ? |
|
| 84 | + $this->config['month_days_number'][intval($this->date_time->format('m'))] + 1 : $this->config['month_days_number'][intval($this->date_time->format('m'))]; |
|
| 86 | 85 | |
| 87 | 86 | break; |
| 88 | 87 | |
| 89 | 88 | case 'jalali': |
| 90 | 89 | |
| 91 | - $days = ( intval( $this->date_time->format( 'm' ) ) == 12 && |
|
| 92 | - $this->config[ 'leap_year' ]( $this->date_time->format( 'Y' )) ) ? |
|
| 93 | - $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ] + 1 : |
|
| 94 | - $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ]; |
|
| 90 | + $days = (intval($this->date_time->format('m')) == 12 && |
|
| 91 | + $this->config['leap_year']($this->date_time->format('Y'))) ? |
|
| 92 | + $this->config['month_days_number'][intval($this->date_time->format('m'))] + 1 : $this->config['month_days_number'][intval($this->date_time->format('m'))]; |
|
| 95 | 93 | |
| 96 | 94 | break; |
| 97 | 95 | |
| 98 | 96 | default: |
| 99 | 97 | |
| 100 | - $days = $this->config[ 'month_days_number' ][ intval( $this->date_time->format( 'm' ) ) ]; |
|
| 98 | + $days = $this->config['month_days_number'][intval($this->date_time->format('m'))]; |
|
| 101 | 99 | |
| 102 | 100 | break; |
| 103 | 101 | |