| @@ 11334-11340 (lines=7) @@ | ||
| 11331 | ||
| 11332 | public function parse($date) |
|
| 11333 | { |
|
| 11334 | foreach ($this->user as $method) |
|
| 11335 | { |
|
| 11336 | if (($returned = call_user_func($method, $date)) !== false) |
|
| 11337 | { |
|
| 11338 | return $returned; |
|
| 11339 | } |
|
| 11340 | } |
|
| 11341 | foreach ($this->built_in as $method) |
|
| 11342 | { |
|
| 11343 | if (($returned = call_user_func(array($this, $method), $date)) !== false) |
|
| @@ 11341-11347 (lines=7) @@ | ||
| 11338 | return $returned; |
|
| 11339 | } |
|
| 11340 | } |
|
| 11341 | foreach ($this->built_in as $method) |
|
| 11342 | { |
|
| 11343 | if (($returned = call_user_func(array($this, $method), $date)) !== false) |
|
| 11344 | { |
|
| 11345 | return $returned; |
|
| 11346 | } |
|
| 11347 | } |
|
| 11348 | return false; |
|
| 11349 | } |
|
| 11350 | ||