Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
xificurk committed Sep 2, 2018
1 parent ce0774d commit d0b3a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Texy/TexyMultiplier.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function setMode(string $name): self

public function getTexy(?string $mode = null): Texy\Texy
{
$mode = $mode === null ? $this->mode : $mode;
$mode = $mode ?? $this->mode;

if (!isset($this->texy[$mode])) {
if (!isset($this->factories[$mode])) {
Expand Down

0 comments on commit d0b3a83

Please sign in to comment.