@@ -41,6 +41,6 @@ |
||
| 41 | 41 | return $this->default; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - return $data[mt_rand(0, $count - 1)]; |
|
| 44 | + return $data[ mt_rand(0, $count - 1) ]; |
|
| 45 | 45 | } |
| 46 | 46 | } |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | public static function isValidDateString($str) |
| 37 | 37 | { |
| 38 | - if (! is_string($str)) { |
|
| 38 | + if ( ! is_string($str)) { |
|
| 39 | 39 | return false; |
| 40 | 40 | } |
| 41 | 41 | |