Skip to content

Commit

Permalink
Fix circle-ci config + behat tests (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
hgiesenow authored Mar 7, 2023
1 parent 60b9622 commit 10b5b17
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true,
"composer/package-versions-deprecated": true
"composer/package-versions-deprecated": true,
"php-http/discovery": false
}
}
}
2 changes: 1 addition & 1 deletion src/Context/SuluArticleContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
*/
final class SuluArticleContext extends AbstractPhpCrContext
class SuluArticleContext extends AbstractPhpCrContext
{
protected ?ArticleDocument $lastDocument = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Context/SuluFormContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
*/
final class SuluFormContext extends AbstractSuluContext
class SuluFormContext extends AbstractSuluContext
{
protected FormManager $formManager;
protected ?Form $lastForm = null;
Expand Down
2 changes: 1 addition & 1 deletion src/Context/SuluMediaContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
*/
final class SuluMediaContext extends AbstractSuluContext
class SuluMediaContext extends AbstractSuluContext
{
protected MediaManagerInterface $mediaManager;
protected CollectionManagerInterface $collectionManager;
Expand Down
2 changes: 1 addition & 1 deletion src/Context/SuluPageContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
*/
final class SuluPageContext extends AbstractPhpCrContext
class SuluPageContext extends AbstractPhpCrContext
{
protected ?PageDocument $lastDocument = null;

Expand Down
2 changes: 1 addition & 1 deletion src/Context/SuluSnippetContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @author Jens Stapelfeldt <jst@elbformat.de>
*/
final class SuluSnippetContext extends AbstractPhpCrContext
class SuluSnippetContext extends AbstractPhpCrContext
{
protected ?SnippetDocument $lastDocument = null;
protected DefaultSnippetManagerInterface $defaultSnippetManager;
Expand Down
2 changes: 1 addition & 1 deletion src/SuluExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function configure(ArrayNodeDefinition $builder): void
->addDefaultsIfNotSet()
->children()
->scalarNode('context')->defaultNull()
;
;
}

public function load(ContainerBuilder $container, array $config): void
Expand Down

0 comments on commit 10b5b17

Please sign in to comment.