Skip to content

Commit

Permalink
Update terminal42/service-annotation-bundle (see #1988)
Browse files Browse the repository at this point in the history
Description
-----------

Requires `terminal42/service-annotation-bundle` 1.1 which no longer requires the marker interface or tag.

see #1985

Commits
-------

f0f39fa Update terminal42/service-annotation-bundle
  • Loading branch information
aschempp committed Jul 25, 2020
1 parent fab4608 commit ca3c8f2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"symfony/web-profiler-bundle": "4.4.*",
"symfony/yaml": "4.4.*",
"terminal42/escargot": "^0.6.0",
"terminal42/service-annotation-bundle": "^1.0",
"terminal42/service-annotation-bundle": "^1.1",
"toflar/psr6-symfony-http-cache-store": "^2.1",
"true/punycode": "^2.1",
"twig/twig": "^2.7",
Expand Down
2 changes: 1 addition & 1 deletion core-bundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"symfony/var-dumper": "4.4.*",
"symfony/yaml": "4.4.*",
"terminal42/escargot": "^0.6.0",
"terminal42/service-annotation-bundle": "^1.0",
"terminal42/service-annotation-bundle": "^1.1",
"true/punycode": "^2.1",
"twig/twig": "^2.7",
"ua-parser/uap-php": "^3.9",
Expand Down
3 changes: 1 addition & 2 deletions core-bundle/src/Controller/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
use Contao\CoreBundle\Framework\ContaoFramework;
use FOS\HttpCacheBundle\Http\SymfonyResponseTagger;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController as SymfonyAbstractController;
use Terminal42\ServiceAnnotationBundle\ServiceAnnotationInterface;

abstract class AbstractController extends SymfonyAbstractController implements ServiceAnnotationInterface
abstract class AbstractController extends SymfonyAbstractController
{
public static function getSubscribedServices()
{
Expand Down
3 changes: 1 addition & 2 deletions core-bundle/src/Cron/LegacyCron.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
use Contao\CoreBundle\Framework\ContaoFramework;
use Contao\CoreBundle\ServiceAnnotation\CronJob;
use Contao\System;
use Terminal42\ServiceAnnotationBundle\ServiceAnnotationInterface;

class LegacyCron implements ServiceAnnotationInterface
class LegacyCron
{
/**
* @var ContaoFramework
Expand Down

0 comments on commit ca3c8f2

Please sign in to comment.