Skip to content

Commit

Permalink
Merge pull request #3 from pmatseykanets/analysis-8LgWJz
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
pmatseykanets committed Sep 11, 2015
2 parents 7db6c36 + 3046276 commit f1dd236
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ArtisanBeansServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function register()
'UnpauseTube',
'Move',
'Export',
'Import'
'Import',
];

foreach ($commands as $command) {
Expand Down
4 changes: 2 additions & 2 deletions src/Console/ExportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ private function renderForExport($job, $stats)

$jobData = [
'stats' => $stats,
'data' => $job->getData(),
'data' => $job->getData(),
];

return json_encode((object) [
'meta' => [
'version' => '1.0',
'hash' => md5(json_encode((object) $jobData)),
'hash' => md5(json_encode((object) $jobData)),
],
'job' => $jobData,
], JSON_PRETTY_PRINT);
Expand Down

0 comments on commit f1dd236

Please sign in to comment.