Skip to content

Commit

Permalink
Code quality improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
gorkalaucirica committed Oct 8, 2014
1 parent 7bcac3f commit dc8f88b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ bin/
coverage/

composer.phar
composer.lock
composer.lock
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ before_script:
- composer install --prefer-source --no-interaction

script:
- bin/phpspec run
- bin/phpspec run
2 changes: 1 addition & 1 deletion Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Client
public function __construct(AuthInterface $auth, Browser $browser = null)
{
$this->auth = $auth;
if ($browser == null) {
if ($browser === null) {
$client = new Curl();
$this->browser = new Browser($client);
}
Expand Down

0 comments on commit dc8f88b

Please sign in to comment.