Skip to content

Commit

Permalink
Merge pull request #38 from bogdanstoik/patch-1
Browse files Browse the repository at this point in the history
Fix setting of default implementation
  • Loading branch information
jenssegers authored Jul 26, 2018
2 parents d1188fe + d25ed56 commit 6fe6662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageHash.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct(
Implementation $implementation = null,
ImageManager $driver = null
) {
$this->implementation = $implementation ?: $this->defaultDriver();
$this->implementation = $implementation ?: $this->defaultImplementation();
$this->driver = $driver ?: $this->defaultDriver();
}

Expand Down

0 comments on commit 6fe6662

Please sign in to comment.