- Removes space between (int) and variable

This commit is contained in:
Vlad
2016-05-18 09:23:50 -04:00
parent 8540c51679
commit bf1ab3a593
17 changed files with 31 additions and 31 deletions

View File

@@ -32,8 +32,8 @@ class Import {
array_keys($data['columns'])
);
$this->subscribers_count = count(reset($this->subscribers_data));
$this->created_at = date('Y-m-d H:i:s', (int) $data['timestamp']);
$this->updated_at = date('Y-m-d H:i:s', (int) $data['timestamp'] + 1);
$this->created_at = date('Y-m-d H:i:s', (int)$data['timestamp']);
$this->updated_at = date('Y-m-d H:i:s', (int)$data['timestamp'] + 1);
$this->profiler_start = microtime(true);
}