Skip to content

Commit

Permalink
fixed constant use
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Hucks committed Mar 20, 2012
1 parent a294f55 commit a915a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Duochrome/Sismo/HoustonNotifier.php
Expand Up @@ -14,7 +14,7 @@ class HoustonNotifier extends Notifier
private $soundSuccess;
private $volume;

public function __construct($soundFail = 'houston.wav', $soundSuccess = null, $volume = 1)
public function __construct($soundFail = self::SOUND_DEFAULT, $soundSuccess = null, $volume = 1)
{
$this->soundFail = (string) $soundFail;
$this->soundSuccess = (string) $soundSuccess;
Expand Down

0 comments on commit a915a73

Please sign in to comment.