Skip to content

Commit

Permalink
Tidied up and used the shorthand condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
edegaudenzi authored and xthiago committed Jan 7, 2017
1 parent 8aa1399 commit 89e7bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Converter/GhostscriptConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(GhostscriptConverterCommand $command, Filesystem $fs
{
$this->command = $command;
$this->fs = $fs;
$this->tmp = empty($tmp)?sys_get_temp_dir():$tmp;
$this->tmp = $tmp ? : sys_get_temp_dir();
}

/**
Expand Down

0 comments on commit 89e7bf4

Please sign in to comment.