Skip to content

Commit 8c72e9d

Browse files
committed
tabs to spaces
1 parent 16589ba commit 8c72e9d

File tree

6 files changed

+149
-149
lines changed

6 files changed

+149
-149
lines changed

src/Pdp/Uri/Url.php

Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -179,83 +179,83 @@ public function toArray()
179179
);
180180
}
181181

182-
/**
183-
* Get Scheme.
184-
*
185-
* @return string
186-
*/
187-
public function getScheme()
188-
{
189-
return $this->scheme;
190-
}
191-
192-
/**
193-
* Get User.
194-
*
195-
* @return string
196-
*/
197-
public function getUser()
198-
{
199-
return $this->user;
200-
}
201-
202-
/**
203-
* Get Pass.
204-
*
205-
* @return string
206-
*/
207-
public function getPass()
208-
{
209-
return $this->pass;
210-
}
211-
212-
/**
213-
* Get Host object.
214-
*
215-
* @return Host
216-
*/
217-
public function getHost()
218-
{
219-
return $this->host;
220-
}
221-
222-
/**
223-
* Get Port.
224-
*
225-
* @return int
226-
*/
227-
public function getPort()
228-
{
229-
return $this->port;
230-
}
231-
232-
/**
233-
* Get Path.
234-
*
235-
* @return string
236-
*/
237-
public function getPath()
238-
{
239-
return $this->path;
240-
}
241-
242-
/**
243-
* Get Query.
244-
*
245-
* @return string
246-
*/
247-
public function getQuery()
248-
{
249-
return $this->query;
250-
}
251-
252-
/**
253-
* Get Fragment.
254-
*
255-
* @return string
256-
*/
257-
public function getFragment()
258-
{
259-
return $this->fragment;
260-
}
182+
/**
183+
* Get Scheme.
184+
*
185+
* @return string
186+
*/
187+
public function getScheme()
188+
{
189+
return $this->scheme;
190+
}
191+
192+
/**
193+
* Get User.
194+
*
195+
* @return string
196+
*/
197+
public function getUser()
198+
{
199+
return $this->user;
200+
}
201+
202+
/**
203+
* Get Pass.
204+
*
205+
* @return string
206+
*/
207+
public function getPass()
208+
{
209+
return $this->pass;
210+
}
211+
212+
/**
213+
* Get Host object.
214+
*
215+
* @return Host
216+
*/
217+
public function getHost()
218+
{
219+
return $this->host;
220+
}
221+
222+
/**
223+
* Get Port.
224+
*
225+
* @return int
226+
*/
227+
public function getPort()
228+
{
229+
return $this->port;
230+
}
231+
232+
/**
233+
* Get Path.
234+
*
235+
* @return string
236+
*/
237+
public function getPath()
238+
{
239+
return $this->path;
240+
}
241+
242+
/**
243+
* Get Query.
244+
*
245+
* @return string
246+
*/
247+
public function getQuery()
248+
{
249+
return $this->query;
250+
}
251+
252+
/**
253+
* Get Fragment.
254+
*
255+
* @return string
256+
*/
257+
public function getFragment()
258+
{
259+
return $this->fragment;
260+
}
261261
}

src/Pdp/Uri/Url/Host.php

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -99,43 +99,43 @@ public function __get($name)
9999
return $this->$name;
100100
}
101101

102-
/**
103-
* Get Subdomain.
104-
*
105-
* @return null|string
106-
*/
107-
public function getSubdomain()
108-
{
109-
return $this->subdomain;
110-
}
111-
112-
/**
113-
* Get Registerable domain.
114-
*
115-
* @return null|string
116-
*/
117-
public function getRegisterableDomain()
118-
{
119-
return $this->registerableDomain;
120-
}
121-
122-
/**
123-
* Get Public suffix.
124-
*
125-
* @return null|string
126-
*/
127-
public function getPublicSuffix()
128-
{
129-
return $this->publicSuffix;
130-
}
131-
132-
/**
133-
* Get Entire host part.
134-
*
135-
* @return null|string
136-
*/
137-
public function getHost()
138-
{
139-
return $this->host;
140-
}
102+
/**
103+
* Get Subdomain.
104+
*
105+
* @return null|string
106+
*/
107+
public function getSubdomain()
108+
{
109+
return $this->subdomain;
110+
}
111+
112+
/**
113+
* Get Registerable domain.
114+
*
115+
* @return null|string
116+
*/
117+
public function getRegisterableDomain()
118+
{
119+
return $this->registerableDomain;
120+
}
121+
122+
/**
123+
* Get Public suffix.
124+
*
125+
* @return null|string
126+
*/
127+
public function getPublicSuffix()
128+
{
129+
return $this->publicSuffix;
130+
}
131+
132+
/**
133+
* Get Entire host part.
134+
*
135+
* @return null|string
136+
*/
137+
public function getHost()
138+
{
139+
return $this->host;
140+
}
141141
}

tests/src/Pdp/CheckPublicSuffixTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
*/
1212
class CheckPublicSuffixTest extends \PHPUnit_Framework_TestCase
1313
{
14-
/**
15-
* @var Parser
16-
*/
14+
/**
15+
* @var Parser
16+
*/
1717
protected $parser;
1818

1919
protected function setUp()

tests/src/Pdp/ParserTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
class ParserTest extends \PHPUnit_Framework_TestCase
66
{
7-
/**
8-
* @var Parser
9-
*/
7+
/**
8+
* @var Parser
9+
*/
1010
protected $parser;
1111

1212
protected function setUp()

tests/src/Pdp/PublicSuffixListManagerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public function testGetListWithoutCache()
181181
$this->cacheDir . '/' . PublicSuffixListManager::PDP_PSL_PHP_FILE
182182
);
183183

184-
/** @var PublicSuffixListManager $listManager */
184+
/** @var PublicSuffixListManager $listManager */
185185
$listManager = $this->getMock(
186186
'\Pdp\PublicSuffixListManager',
187187
array('refreshPublicSuffixList'),

tests/src/Pdp/Uri/Url/HostTest.php

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
class HostTest extends \PHPUnit_Framework_TestCase
66
{
7-
/**
8-
* @dataProvider hostDataProvider
9-
*
10-
* @param $publicSuffix
11-
* @param $registerableDomain
12-
* @param $subdomain
13-
* @param $hostPart
14-
*/
7+
/**
8+
* @dataProvider hostDataProvider
9+
*
10+
* @param $publicSuffix
11+
* @param $registerableDomain
12+
* @param $subdomain
13+
* @param $hostPart
14+
*/
1515
public function test__toString($publicSuffix, $registerableDomain, $subdomain, $hostPart)
1616
{
1717
$host = new Host(
@@ -35,14 +35,14 @@ public function test__toStringWhenHostPartIsNull()
3535
$this->assertEquals('www.example.com', $host->__toString());
3636
}
3737

38-
/**
39-
* @dataProvider hostDataProvider
40-
*
41-
* @param $publicSuffix
42-
* @param $registerableDomain
43-
* @param $subdomain
44-
* @param $hostPart
45-
*/
38+
/**
39+
* @dataProvider hostDataProvider
40+
*
41+
* @param $publicSuffix
42+
* @param $registerableDomain
43+
* @param $subdomain
44+
* @param $hostPart
45+
*/
4646
public function test__get($publicSuffix, $registerableDomain, $subdomain, $hostPart)
4747
{
4848
$parts = array(
@@ -65,14 +65,14 @@ public function test__get($publicSuffix, $registerableDomain, $subdomain, $hostP
6565
$this->assertEquals($parts['publicSuffix'], $host->getPublicSuffix());
6666
}
6767

68-
/**
69-
* @dataProvider hostDataProvider
70-
*
71-
* @param $publicSuffix
72-
* @param $registerableDomain
73-
* @param $subdomain
74-
* @param $hostPart
75-
*/
68+
/**
69+
* @dataProvider hostDataProvider
70+
*
71+
* @param $publicSuffix
72+
* @param $registerableDomain
73+
* @param $subdomain
74+
* @param $hostPart
75+
*/
7676
public function testToArray($publicSuffix, $registerableDomain, $subdomain, $hostPart)
7777
{
7878
$parts = array(

0 commit comments

Comments
 (0)