@@ -1,7 +1,6 @@ |
||
| 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; |
@@ -58,6 +58,10 @@ |
||
| 58 | 58 | * |
| 59 | 59 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ |
| 60 | 60 | */ |
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * @param string $path |
|
| 64 | + */ |
|
| 61 | 65 | private function fetch( $path ) |
| 62 | 66 | { |
| 63 | 67 | |
@@ -143,19 +143,19 @@ |
||
| 143 | 143 | |
| 144 | 144 | switch ( $this->local[ 'default_calendar' ] ) { |
| 145 | 145 | |
| 146 | - case 'jalali': |
|
| 146 | + case 'jalali': |
|
| 147 | 147 | |
| 148 | - $this->date_time->setDate(1394, $month, $day); |
|
| 148 | + $this->date_time->setDate(1394, $month, $day); |
|
| 149 | 149 | |
| 150 | - $this->date_time = Datium::create($this->date_time)->from('jalali')->to('gregorian')->object(); //$this->convert->jalaliToGregorian( $this->date_time ); |
|
| 150 | + $this->date_time = Datium::create($this->date_time)->from('jalali')->to('gregorian')->object(); //$this->convert->jalaliToGregorian( $this->date_time ); |
|
| 151 | 151 | |
| 152 | - break; |
|
| 152 | + break; |
|
| 153 | 153 | |
| 154 | - case 'hijri': |
|
| 154 | + case 'hijri': |
|
| 155 | 155 | |
| 156 | - $this->date_time = Datium::create($this->date_time)->from('hijri')->to('gregorian')->object(); // $this->convert->hijriToGregorian( $this->date_time ); |
|
| 156 | + $this->date_time = Datium::create($this->date_time)->from('hijri')->to('gregorian')->object(); // $this->convert->hijriToGregorian( $this->date_time ); |
|
| 157 | 157 | |
| 158 | - break; |
|
| 158 | + break; |
|
| 159 | 159 | |
| 160 | 160 | } |
| 161 | 161 | |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | private static $date_end; |
| 29 | 29 | |
| 30 | - public function __construct( $date_time, $date_end = null ) |
|
| 30 | + public function __construct($date_time, $date_end = null) |
|
| 31 | 31 | { |
| 32 | 32 | |
| 33 | - if($date_end !== null ) { |
|
| 33 | + if ($date_end !== null) { |
|
| 34 | 34 | |
| 35 | 35 | Events::$date_start = $date_time; |
| 36 | 36 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ |
| 60 | 60 | */ |
| 61 | - private function fetch( $path ) |
|
| 61 | + private function fetch($path) |
|
| 62 | 62 | { |
| 63 | 63 | |
| 64 | 64 | $this->events = include $path; |
@@ -67,11 +67,11 @@ discard block |
||
| 67 | 67 | |
| 68 | 68 | $this->period = new DatePeriod(Events::$date_start, $this->interval, Events::$date_end); |
| 69 | 69 | |
| 70 | - foreach ( $this->period as $dt ) { |
|
| 70 | + foreach ($this->period as $dt) { |
|
| 71 | 71 | |
| 72 | - if (isset($this->events[ 'events' ][ intval($dt->format('m')) ][ intval($dt->format('d')) ]) ) { |
|
| 72 | + if (isset($this->events['events'][intval($dt->format('m'))][intval($dt->format('d'))])) { |
|
| 73 | 73 | |
| 74 | - $this->result[ $dt->format('Y-m-d') ][] = $this->events[ 'events' ][ intval($dt->format('m')) ][ intval($dt->format('d')) ]; |
|
| 74 | + $this->result[$dt->format('Y-m-d')][] = $this->events['events'][intval($dt->format('m'))][intval($dt->format('d'))]; |
|
| 75 | 75 | |
| 76 | 76 | } |
| 77 | 77 | |
@@ -91,13 +91,13 @@ discard block |
||
| 91 | 91 | public function get() |
| 92 | 92 | { |
| 93 | 93 | |
| 94 | - if(! empty($this->result) ) { |
|
| 94 | + if ( ! empty($this->result)) { |
|
| 95 | 95 | |
| 96 | - foreach( $this->result as $key => $day ) { |
|
| 96 | + foreach ($this->result as $key => $day) { |
|
| 97 | 97 | |
| 98 | - if (! ( $key > Events::$date_start->format('Y-m-d') && $key < Events::$date_end->format('Y-m-d') ) ) { |
|
| 98 | + if ( ! ($key > Events::$date_start->format('Y-m-d') && $key < Events::$date_end->format('Y-m-d'))) { |
|
| 99 | 99 | |
| 100 | - unset($this->result[ $key ]); |
|
| 100 | + unset($this->result[$key]); |
|
| 101 | 101 | |
| 102 | 102 | } |
| 103 | 103 | |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * |
| 123 | 123 | *\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ |
| 124 | 124 | */ |
| 125 | - public function local( $country_code = "ir" ) |
|
| 125 | + public function local($country_code = "ir") |
|
| 126 | 126 | { |
| 127 | 127 | |
| 128 | 128 | /* |
@@ -131,17 +131,17 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | $country_code = strtolower($country_code = 'ir'); |
| 133 | 133 | |
| 134 | - $this->local = include 'Localization/' . $country_code . '.php'; |
|
| 134 | + $this->local = include 'Localization/'.$country_code.'.php'; |
|
| 135 | 135 | |
| 136 | - foreach( $this->local[ 'events' ] as $month => $events ) { |
|
| 136 | + foreach ($this->local['events'] as $month => $events) { |
|
| 137 | 137 | |
| 138 | - foreach( $events as $day => $event ){ |
|
| 138 | + foreach ($events as $day => $event) { |
|
| 139 | 139 | |
| 140 | 140 | $this->date_time = new DateTime(); |
| 141 | 141 | |
| 142 | 142 | $this->date_time->setDate(Events::$date_start->format('Y'), $month, $day); |
| 143 | 143 | |
| 144 | - switch ( $this->local[ 'default_calendar' ] ) { |
|
| 144 | + switch ($this->local['default_calendar']) { |
|
| 145 | 145 | |
| 146 | 146 | case 'jalali': |
| 147 | 147 | |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - $this->result[ $this->date_time->format('Y-m-d') ][] = $event; |
|
| 162 | + $this->result[$this->date_time->format('Y-m-d')][] = $event; |
|
| 163 | 163 | |
| 164 | 164 | } |
| 165 | 165 | |
@@ -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 | |
@@ -7,42 +7,42 @@ discard block |
||
| 7 | 7 | { |
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | - * @param integer store year value |
|
| 11 | - */ |
|
| 10 | + * @param integer store year value |
|
| 11 | + */ |
|
| 12 | 12 | protected $year; |
| 13 | 13 | |
| 14 | 14 | /** |
| 15 | - * @param string store type of year value |
|
| 16 | - */ |
|
| 15 | + * @param string store type of year value |
|
| 16 | + */ |
|
| 17 | 17 | protected $type; |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * @param boolean store result of leap functions |
|
| 21 | - */ |
|
| 20 | + * @param boolean store result of leap functions |
|
| 21 | + */ |
|
| 22 | 22 | protected $result; |
| 23 | 23 | |
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | - * @param $year integer |
|
| 27 | - * @since Aug, 21 2015 |
|
| 28 | - */ |
|
| 26 | + * @param $year integer |
|
| 27 | + * @since Aug, 21 2015 |
|
| 28 | + */ |
|
| 29 | 29 | public function __construct( $year, $type = 'gregorian' ) |
| 30 | 30 | { |
| 31 | 31 | |
| 32 | - $this->year = $year; |
|
| 32 | + $this->year = $year; |
|
| 33 | 33 | |
| 34 | - $this->type = $type; |
|
| 34 | + $this->type = $type; |
|
| 35 | 35 | |
| 36 | - return $this; |
|
| 36 | + return $this; |
|
| 37 | 37 | |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | - * check the gregorian year is leap or not |
|
| 42 | - * |
|
| 43 | - * @since Oct, 24 2015 |
|
| 44 | - * @return boolean |
|
| 45 | - */ |
|
| 41 | + * check the gregorian year is leap or not |
|
| 42 | + * |
|
| 43 | + * @since Oct, 24 2015 |
|
| 44 | + * @return boolean |
|
| 45 | + */ |
|
| 46 | 46 | public function gregorinLeapYear() |
| 47 | 47 | { |
| 48 | 48 | |
@@ -51,11 +51,11 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
| 54 | - * check the jalali year is leap or not |
|
| 55 | - * |
|
| 56 | - * @since Oct, 24 2015 |
|
| 57 | - * @return boolean |
|
| 58 | - */ |
|
| 54 | + * check the jalali year is leap or not |
|
| 55 | + * |
|
| 56 | + * @since Oct, 24 2015 |
|
| 57 | + * @return boolean |
|
| 58 | + */ |
|
| 59 | 59 | public function jalaliLeapYear() |
| 60 | 60 | { |
| 61 | 61 | |
@@ -103,11 +103,11 @@ discard block |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
| 106 | - * check the hijri year is leap or not |
|
| 107 | - * |
|
| 108 | - * @since Oct, 24 2015 |
|
| 109 | - * @return boolean |
|
| 110 | - */ |
|
| 106 | + * check the hijri year is leap or not |
|
| 107 | + * |
|
| 108 | + * @since Oct, 24 2015 |
|
| 109 | + * @return boolean |
|
| 110 | + */ |
|
| 111 | 111 | public function hijriLeapYear() |
| 112 | 112 | { |
| 113 | 113 | |
@@ -122,11 +122,11 @@ discard block |
||
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
| 125 | - * return the year is leap or not |
|
| 126 | - * |
|
| 127 | - * @since Aug, 21 2015 |
|
| 128 | - * @return boolean |
|
| 129 | - */ |
|
| 125 | + * return the year is leap or not |
|
| 126 | + * |
|
| 127 | + * @since Aug, 21 2015 |
|
| 128 | + * @return boolean |
|
| 129 | + */ |
|
| 130 | 130 | public function get() |
| 131 | 131 | { |
| 132 | 132 | |
@@ -132,23 +132,23 @@ |
||
| 132 | 132 | |
| 133 | 133 | switch ( $this->type ) { |
| 134 | 134 | |
| 135 | - case 'gregorian': |
|
| 135 | + case 'gregorian': |
|
| 136 | 136 | |
| 137 | - $this->result = $this->gregorinLeapYear(); |
|
| 137 | + $this->result = $this->gregorinLeapYear(); |
|
| 138 | 138 | |
| 139 | - break; |
|
| 139 | + break; |
|
| 140 | 140 | |
| 141 | - case 'jalali': |
|
| 141 | + case 'jalali': |
|
| 142 | 142 | |
| 143 | - $this->result = $this->jalaliLeapYear(); |
|
| 143 | + $this->result = $this->jalaliLeapYear(); |
|
| 144 | 144 | |
| 145 | - break; |
|
| 145 | + break; |
|
| 146 | 146 | |
| 147 | - case 'hijri': |
|
| 147 | + case 'hijri': |
|
| 148 | 148 | |
| 149 | - $this->result = $this->hijriLeapYear(); |
|
| 149 | + $this->result = $this->hijriLeapYear(); |
|
| 150 | 150 | |
| 151 | - break; |
|
| 151 | + break; |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | return $this->result; |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * @param $year integer |
| 27 | 27 | * @since Aug, 21 2015 |
| 28 | 28 | */ |
| 29 | - public function __construct( $year, $type = 'gregorian' ) |
|
| 29 | + public function __construct($year, $type = 'gregorian') |
|
| 30 | 30 | { |
| 31 | 31 | |
| 32 | 32 | $this->year = $year; |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | public function gregorinLeapYear() |
| 47 | 47 | { |
| 48 | 48 | |
| 49 | - return ( ( ( $this->year % 4 ) == 0 ) && ( ( ( $this->year % 100 ) != 0 ) || ( ( $this->year % 400 ) == 0 ) ) ); |
|
| 49 | + return ((($this->year % 4) == 0) && ((($this->year % 100) != 0) || (($this->year % 400) == 0))); |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | $jalali_years = 0; |
| 63 | 63 | |
| 64 | - while ( $jalali_years < ( $this->year - 128 ) ) { |
|
| 64 | + while ($jalali_years < ($this->year - 128)) { |
|
| 65 | 65 | |
| 66 | 66 | $jalali_years += 128; |
| 67 | 67 | |
@@ -72,13 +72,13 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | $this->result -= $jalali_years; |
| 74 | 74 | |
| 75 | - if ($this->result >= 33 ) { |
|
| 75 | + if ($this->result >= 33) { |
|
| 76 | 76 | |
| 77 | 77 | $this->result = $this->result % 33; |
| 78 | 78 | |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - if (( $this->result == 28 ) || ( $this->result == 27 ) ) { |
|
| 81 | + if (($this->result == 28) || ($this->result == 27)) { |
|
| 82 | 82 | |
| 83 | 83 | return $this->result; |
| 84 | 84 | |
@@ -89,13 +89,13 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $this->result -= $jalali_years; |
| 91 | 91 | |
| 92 | - if ($this->result >= 33 ) { |
|
| 92 | + if ($this->result >= 33) { |
|
| 93 | 93 | |
| 94 | 94 | $this->result = $this->result % 33; |
| 95 | 95 | |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - if (( ( $this->result % 4 ) == 0 ) && ( $this->result != 28 ) ) { |
|
| 98 | + if ((($this->result % 4) == 0) && ($this->result != 28)) { |
|
| 99 | 99 | |
| 100 | 100 | return $this->result; |
| 101 | 101 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | $this->result = $this->year % 30; |
| 115 | 115 | |
| 116 | - 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 ) ) { |
|
| 116 | + 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)) { |
|
| 117 | 117 | |
| 118 | 118 | return $this->result; |
| 119 | 119 | |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | public function get() |
| 131 | 131 | { |
| 132 | 132 | |
| 133 | - switch ( $this->type ) { |
|
| 133 | + switch ($this->type) { |
|
| 134 | 134 | |
| 135 | 135 | case 'gregorian': |
| 136 | 136 | |
@@ -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 | |
@@ -2,7 +2,7 @@ discard block |
||
| 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 |
||
| 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( |
@@ -2,7 +2,7 @@ discard block |
||
| 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 | |
@@ -40,9 +40,9 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | 'pm_time' => 'ب.ظ', |
| 42 | 42 | |
| 43 | - 'end_of_days' => array( "" ), |
|
| 43 | + 'end_of_days' => array(""), |
|
| 44 | 44 | |
| 45 | - 'numbers' => array( '۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹' ), |
|
| 45 | + 'numbers' => array('۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'), |
|
| 46 | 46 | '0' => '۰', |
| 47 | 47 | '1' => '۱', |
| 48 | 48 | '2' => '۲', |
@@ -341,6 +341,10 @@ |
||
| 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 |
@@ -58,7 +58,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -2,6 +2,6 @@ |
||
| 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(); |
@@ -125,4 +125,4 @@ |
||
| 125 | 125 | */ |
| 126 | 126 | 'weekend' => array( 'friday' ) |
| 127 | 127 | |
| 128 | - ); |
|
| 128 | + ); |
|
@@ -35,9 +35,9 @@ |
||
| 35 | 35 | 'default_calendar' => 'gregorian', |
| 36 | 36 | |
| 37 | 37 | |
| 38 | - 'date_interval' => array( 'D', 'M', 'Y', 'H', 'm', 'S' ), |
|
| 38 | + 'date_interval' => array('D', 'M', 'Y', 'H', 'm', 'S'), |
|
| 39 | 39 | |
| 40 | 40 | |
| 41 | - 'date_simple' => array( 'day', ' month', ' year', ' hour', ' minute', ' second' ), |
|
| 41 | + 'date_simple' => array('day', ' month', ' year', ' hour', ' minute', ' second'), |
|
| 42 | 42 | |
| 43 | 43 | ); |