Skip to content

Commit

Permalink
Adding copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
flutchman committed May 9, 2019
1 parent 82d47af commit 0837c24
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/Behat/BusinessContext/AuthenticationContext.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\BusinessContext;

use Flutchman\EzMigrationUiBundle\Behat\PageObject\LoginPage;
Expand Down
4 changes: 4 additions & 0 deletions src/Behat/Helper/Hooks.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\Helper;

use Behat\Behat\Hook\Scope\AfterStepScope;
Expand Down
4 changes: 4 additions & 0 deletions src/Behat/PageElement/ElementFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\PageElement;

use EzSystems\EzPlatformAdminUi\Behat\Helper\InstallType;
Expand Down
10 changes: 7 additions & 3 deletions src/Behat/PageElement/PlatformElementFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\PageElement;

use EzSystems\EzPlatformAdminUi\Behat\Helper\UtilityContext;
Expand Down Expand Up @@ -70,7 +74,7 @@ public static function createElement(UtilityContext $context, string $elementNam
case MigrationStateTable::ELEMENT_NAME:
return new MigrationStateTable($context, $parameters[0]);
case AdminList::ELEMENT_NAME:
if (!array_key_exists(2, $parameters)) {
if (!\array_key_exists(2, $parameters)) {
$parameters[2] = null;
}

Expand Down Expand Up @@ -176,11 +180,11 @@ public static function createElement(UtilityContext $context, string $elementNam
case LanguagePicker::ELEMENT_NAME:
return new LanguagePicker($context);
case DateAndTimePopup::ELEMENT_NAME:
if (!array_key_exists(0, $parameters)) {
if (!\array_key_exists(0, $parameters)) {
return new DateAndTimePopup($context);
}

if (!array_key_exists(1, $parameters)) {
if (!\array_key_exists(1, $parameters)) {
return new DateAndTimePopup($context, $parameters[0]);
}

Expand Down
4 changes: 4 additions & 0 deletions src/Behat/PageObject/LoginPage.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\PageObject;

use EzSystems\EzPlatformAdminUi\Behat\PageObject\Page;
Expand Down
4 changes: 4 additions & 0 deletions src/Behat/PageObject/PageObjectFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\PageObject;

use EzSystems\EzPlatformAdminUi\Behat\Helper\InstallType;
Expand Down
4 changes: 4 additions & 0 deletions src/Behat/PageObject/PlatformPageObjectFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

/**
* @copyright Copyright (C) Flutchman. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Flutchman\EzMigrationUiBundle\Behat\PageObject;

use EzSystems\EzPlatformAdminUi\Behat\Helper\UtilityContext;
Expand Down

0 comments on commit 0837c24

Please sign in to comment.