Skip to content

Commit 16ceba9

Browse files
committed
Code cleanup.
1 parent bf268b9 commit 16ceba9

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/Codeception/Util/Drupal/FormField.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Class FormField provides form field path detection services.
1010
*
11-
* @package Page\Acceptance
11+
* @package Codeception\Util
1212
*/
1313
class FormField extends XpathBuilder implements IdentifiableFormFieldInterface {
1414

@@ -29,7 +29,7 @@ class FormField extends XpathBuilder implements IdentifiableFormFieldInterface {
2929
/**
3030
* Parent of form field.
3131
*
32-
* @var \Page\Acceptance\IdentifiableFormFieldInterface|null
32+
* @var \Codeception\Util\IdentifiableFormFieldInterface|null
3333
*/
3434
public $parent;
3535

src/Codeception/Util/Drupal/MTOFormField.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Class Many To One Form Field provides form field path detection services.
1010
*
11-
* @package Page\Acceptance
11+
* @package Codeception\Util
1212
*/
1313
class MTOFormField extends XpathBuilder implements IdentifiableFormFieldInterface {
1414

@@ -29,7 +29,7 @@ class MTOFormField extends XpathBuilder implements IdentifiableFormFieldInterfac
2929
/**
3030
* Parent of form field.
3131
*
32-
* @var \Page\Acceptance\IdentifiableFormFieldInterface|null
32+
* @var \Codeception\Util\IdentifiableFormFieldInterface|null
3333
*/
3434
public $parent;
3535

src/Codeception/Util/Drupal/ParagraphFormField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class ParagraphFormField.
77
*
8-
* @package Page\Acceptance
8+
* @package Codeception\Util
99
*/
1010
class ParagraphFormField extends FormField {
1111

src/Codeception/Util/IdentifiableFormFieldInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Interface IdentifiableFormFieldInterface.
77
*
8-
* @package Page\Acceptance
8+
* @package \Codeception\Util
99
*/
1010
interface IdentifiableFormFieldInterface {
1111

src/Codeception/Util/XpathBuilder.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class FormField provides form field path detection services.
77
*
8-
* @package Page\Acceptance
8+
* @package Codeception\Util
99
*/
1010
abstract class XpathBuilder {
1111

@@ -56,7 +56,7 @@ public function __construct($pattern, array $replacements) {
5656
* @param array $arguments
5757
* Arguments like parent and position.
5858
*
59-
* @return \Page\Acceptance\XpathBuilder
59+
* @return self
6060
* Returns initiated object.
6161
*/
6262
public static function __callStatic($name, array $arguments) {
@@ -81,7 +81,7 @@ public static function __callStatic($name, array $arguments) {
8181
* @param string $value
8282
* Replacement value.
8383
*
84-
* @return \Page\Acceptance\XpathBuilder
84+
* @return \Codeception\Util\XpathBuilder
8585
* Returns self.
8686
*/
8787
public function setReplacement($key, $value) {

0 commit comments

Comments
 (0)