Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/5401'
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/UriTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -975,19 +975,19 @@ public function invalidRelativeUriObjectProvider()
$obj2 = new Uri;
$obj2->setPath('//path');

// A object with port
// An object with port
$obj3 = new Uri;
$obj3->setPort(123);

// A object with userInfo
// An object with userInfo
$obj4 = new Uri;
$obj4->setUserInfo('shahar:password');

// A object with scheme
// An object with scheme
$obj5 = new Uri;
$obj5->setScheme('https');

// A object with host
// An object with host
$obj6 = new Uri;
$obj6->setHost('example.com');

Expand Down

0 comments on commit ecdf449

Please sign in to comment.