Skip to content

Commit a001e3f

Browse files
committed
Update code formatting.
1 parent 80c2ff5 commit a001e3f

File tree

6 files changed

+13
-21
lines changed

6 files changed

+13
-21
lines changed

src/Behat/Context/UriContext.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,27 +65,27 @@ public function assertCurrentUri($uri)
6565
/**
6666
* Get the base URL of the site.
6767
*
68-
* @return string
68+
* @return string The base URL of the site.
6969
*/
7070
public function getBaseUrl()
7171
{
7272
return $this->getMinkParameter('base_url');
7373
}
7474

7575
/**
76-
* Get the full URL of the current page.
76+
* Get the URL of the current page.
7777
*
78-
* @return string
78+
* @return string The URL of the current page.
7979
*/
8080
public function getCurrentUrl()
8181
{
8282
return $this->getSession()->getCurrentUrl();
8383
}
8484

8585
/**
86-
* Get the current full URI without the base URL.
86+
* Get the current URI without the base URL.
8787
*
88-
* @return string
88+
* @return string The current URI.
8989
*/
9090
public function getCurrentUri()
9191
{

src/PHPUnit/TestSuites/FunctionalJavascriptTestSuite.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class FunctionalJavascriptTestSuite extends TestSuiteBase
1010
/**
1111
* Factory method which loads up a suite with all functional-javascript tests.
1212
*
13-
* @return static
14-
* The test suite.
13+
* @return static The test suite.
1514
*/
1615
public static function suite()
1716
{

src/PHPUnit/TestSuites/FunctionalTestSuite.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class FunctionalTestSuite extends TestSuiteBase
1010
/**
1111
* Factory method which loads up a suite with all functional tests.
1212
*
13-
* @return static
14-
* The test suite.
13+
* @return static The test suite.
1514
*/
1615
public static function suite()
1716
{

src/PHPUnit/TestSuites/KernelTestSuite.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class KernelTestSuite extends TestSuiteBase
1010
/**
1111
* Factory method which loads up a suite with all kernel tests.
1212
*
13-
* @return static
14-
* The test suite.
13+
* @return static The test suite.
1514
*/
1615
public static function suite()
1716
{

src/PHPUnit/TestSuites/TestSuiteBase.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ abstract class TestSuiteBase extends TestSuite
1313
/**
1414
* Class constructor.
1515
*
16-
* @param string $name
17-
* The suite name.
18-
* @param string $suite_namespace
19-
* Subnamespace used to separate test suite.
16+
* @param string $name The suite name.
17+
* @param string $suite_namespace Subnamespace used to separate test suite.
2018
*/
2119
public function __construct($name, $suite_namespace)
2220
{
@@ -47,10 +45,8 @@ public function __construct($name, $suite_namespace)
4745
/**
4846
* Find and add tests to the suites.
4947
*
50-
* @param string $root
51-
* Path to the root of the Drupal installation.
52-
* @param string $suite_namespace
53-
* Subnamespace used to separate test suite.
48+
* @param string $root Path to the root of the Drupal installation.
49+
* @param string $suite_namespace Subnamespace used to separate test suite.
5450
*/
5551
protected function addTestsBySuiteNamespace($root, $suite_namespace)
5652
{

src/PHPUnit/TestSuites/UnitTestSuite.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ class UnitTestSuite extends TestSuiteBase
1010
/**
1111
* Factory method which loads up a suite with all unit tests.
1212
*
13-
* @return static
14-
* The test suite.
13+
* @return static The test suite.
1514
*/
1615
public static function suite()
1716
{

0 commit comments

Comments
 (0)