diff options
Diffstat (limited to 'tests/acceptance/features/core')
13 files changed, 0 insertions, 16 deletions
diff --git a/tests/acceptance/features/core/Actor.php b/tests/acceptance/features/core/Actor.php index f47373593e9..ea33e7df21e 100644 --- a/tests/acceptance/features/core/Actor.php +++ b/tests/acceptance/features/core/Actor.php @@ -212,5 +212,4 @@ class Actor { public function &getSharedNotebook() { return $this->sharedNotebook; } - } diff --git a/tests/acceptance/features/core/ActorAware.php b/tests/acceptance/features/core/ActorAware.php index cc98ad7770d..5a1a7542355 100644 --- a/tests/acceptance/features/core/ActorAware.php +++ b/tests/acceptance/features/core/ActorAware.php @@ -34,5 +34,4 @@ trait ActorAware { public function setCurrentActor(Actor $actor) { $this->actor = $actor; } - } diff --git a/tests/acceptance/features/core/ActorAwareInterface.php b/tests/acceptance/features/core/ActorAwareInterface.php index 9363bc3e607..37261773cbb 100644 --- a/tests/acceptance/features/core/ActorAwareInterface.php +++ b/tests/acceptance/features/core/ActorAwareInterface.php @@ -27,5 +27,4 @@ interface ActorAwareInterface { * @param Actor $actor */ public function setCurrentActor(Actor $actor); - } diff --git a/tests/acceptance/features/core/ActorContext.php b/tests/acceptance/features/core/ActorContext.php index 9ef34cae29f..932af5ff277 100644 --- a/tests/acceptance/features/core/ActorContext.php +++ b/tests/acceptance/features/core/ActorContext.php @@ -184,5 +184,4 @@ class ActorContext extends RawMinkContext { $actor->getSession()->stop(); } } - } diff --git a/tests/acceptance/features/core/ElementFinder.php b/tests/acceptance/features/core/ElementFinder.php index 5570637aa96..9981321c90d 100644 --- a/tests/acceptance/features/core/ElementFinder.php +++ b/tests/acceptance/features/core/ElementFinder.php @@ -201,5 +201,4 @@ class ElementFinder { public function find() { return self::findInternal($this->session, $this->elementLocator, $this->timeout, $this->timeoutStep); } - } diff --git a/tests/acceptance/features/core/ElementWrapper.php b/tests/acceptance/features/core/ElementWrapper.php index 97b1b4bfbcd..d5f7ef495c1 100644 --- a/tests/acceptance/features/core/ElementWrapper.php +++ b/tests/acceptance/features/core/ElementWrapper.php @@ -333,5 +333,4 @@ class ElementWrapper { return Utils::waitFor($isVisibleCallback, $timeout, $timeoutStep); } - } diff --git a/tests/acceptance/features/core/Locator.php b/tests/acceptance/features/core/Locator.php index e3577f296f4..dd971147f86 100644 --- a/tests/acceptance/features/core/Locator.php +++ b/tests/acceptance/features/core/Locator.php @@ -99,7 +99,6 @@ class Locator { public function getAncestor() { return $this->ancestor; } - } class LocatorBuilder { @@ -240,7 +239,6 @@ class LocatorBuilder { public function table($value) { return $this->customSelector("named_exact", ["table", $value]); } - } class LocatorBuilderSecondStep { @@ -279,7 +277,6 @@ class LocatorBuilderSecondStep { public function describedAs($description) { return new Locator($description, $this->selector, $this->locator); } - } class LocatorBuilderThirdStep { @@ -317,5 +314,4 @@ class LocatorBuilderThirdStep { public function describedAs($description) { return new Locator($description, $this->selector, $this->locator, $this->ancestor); } - } diff --git a/tests/acceptance/features/core/NextcloudTestServerContext.php b/tests/acceptance/features/core/NextcloudTestServerContext.php index 8540a71a4f4..682811248e1 100644 --- a/tests/acceptance/features/core/NextcloudTestServerContext.php +++ b/tests/acceptance/features/core/NextcloudTestServerContext.php @@ -124,5 +124,4 @@ class NextcloudTestServerContext implements Context { } } } - } diff --git a/tests/acceptance/features/core/NextcloudTestServerHelper.php b/tests/acceptance/features/core/NextcloudTestServerHelper.php index 198d78e3fcb..cd50616e34c 100644 --- a/tests/acceptance/features/core/NextcloudTestServerHelper.php +++ b/tests/acceptance/features/core/NextcloudTestServerHelper.php @@ -69,5 +69,4 @@ interface NextcloudTestServerHelper { * @throws \Exception if the base URL can not be determined. */ public function getBaseUrl(); - } diff --git a/tests/acceptance/features/core/NextcloudTestServerLocalApacheHelper.php b/tests/acceptance/features/core/NextcloudTestServerLocalApacheHelper.php index a2dd6664c6f..36cffc325dc 100644 --- a/tests/acceptance/features/core/NextcloudTestServerLocalApacheHelper.php +++ b/tests/acceptance/features/core/NextcloudTestServerLocalApacheHelper.php @@ -126,5 +126,4 @@ class NextcloudTestServerLocalApacheHelper implements NextcloudTestServerHelper private function stopApacheServer() { $this->execOrException("service apache2 stop"); } - } diff --git a/tests/acceptance/features/core/NextcloudTestServerLocalBuiltInHelper.php b/tests/acceptance/features/core/NextcloudTestServerLocalBuiltInHelper.php index 1e74f5c66d1..ce81881c9c4 100644 --- a/tests/acceptance/features/core/NextcloudTestServerLocalBuiltInHelper.php +++ b/tests/acceptance/features/core/NextcloudTestServerLocalBuiltInHelper.php @@ -140,5 +140,4 @@ class NextcloudTestServerLocalBuiltInHelper implements NextcloudTestServerHelper $this->phpServerPid = ""; } - } diff --git a/tests/acceptance/features/core/NoSuchElementException.php b/tests/acceptance/features/core/NoSuchElementException.php index 5f8270d2a49..dca884556ad 100644 --- a/tests/acceptance/features/core/NoSuchElementException.php +++ b/tests/acceptance/features/core/NoSuchElementException.php @@ -33,5 +33,4 @@ class NoSuchElementException extends \Exception { public function __construct($message, \Exception $previous = null) { parent::__construct($message, 0, $previous); } - } diff --git a/tests/acceptance/features/core/Utils.php b/tests/acceptance/features/core/Utils.php index f81542eb079..1650df4f824 100644 --- a/tests/acceptance/features/core/Utils.php +++ b/tests/acceptance/features/core/Utils.php @@ -86,5 +86,4 @@ class Utils { }; return self::waitFor($isServerUpCallback, $timeout, $timeoutStep); } - } |