Skip to content

Commit 10b5b17

Browse files
authored
Fix circle-ci config + behat tests (#11)
1 parent 60b9622 commit 10b5b17

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
"sort-packages": true,
4646
"allow-plugins": {
4747
"symfony/runtime": true,
48-
"composer/package-versions-deprecated": true
48+
"composer/package-versions-deprecated": true,
49+
"php-http/discovery": false
4950
}
5051
}
5152
}

src/Context/SuluArticleContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
2020
*/
21-
final class SuluArticleContext extends AbstractPhpCrContext
21+
class SuluArticleContext extends AbstractPhpCrContext
2222
{
2323
protected ?ArticleDocument $lastDocument = null;
2424

src/Context/SuluFormContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
1818
*/
19-
final class SuluFormContext extends AbstractSuluContext
19+
class SuluFormContext extends AbstractSuluContext
2020
{
2121
protected FormManager $formManager;
2222
protected ?Form $lastForm = null;

src/Context/SuluMediaContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
1818
*/
19-
final class SuluMediaContext extends AbstractSuluContext
19+
class SuluMediaContext extends AbstractSuluContext
2020
{
2121
protected MediaManagerInterface $mediaManager;
2222
protected CollectionManagerInterface $collectionManager;

src/Context/SuluPageContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @author Hannes Giesenow <hannes.giesenow@elbformat.de>
1515
*/
16-
final class SuluPageContext extends AbstractPhpCrContext
16+
class SuluPageContext extends AbstractPhpCrContext
1717
{
1818
protected ?PageDocument $lastDocument = null;
1919

src/Context/SuluSnippetContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @author Jens Stapelfeldt <jst@elbformat.de>
2222
*/
23-
final class SuluSnippetContext extends AbstractPhpCrContext
23+
class SuluSnippetContext extends AbstractPhpCrContext
2424
{
2525
protected ?SnippetDocument $lastDocument = null;
2626
protected DefaultSnippetManagerInterface $defaultSnippetManager;

src/SuluExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function configure(ArrayNodeDefinition $builder): void
3838
->addDefaultsIfNotSet()
3939
->children()
4040
->scalarNode('context')->defaultNull()
41-
;
41+
;
4242
}
4343

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

0 commit comments

Comments
 (0)