Skip to content
This repository has been archived by the owner on Jul 28, 2022. It is now read-only.

Commit

Permalink
Merge 7a8866b into f1f9b67
Browse files Browse the repository at this point in the history
  • Loading branch information
mazsudo committed Jan 27, 2020
2 parents f1f9b67 + 7a8866b commit a8576b5
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:
- SYMFONY_DEPRECATIONS_HELPER=max[self]=0
- TARGET=test
- UPSTREAM_URL=https://github.com/sonata-project/SonataNotificationBundle.git
- PHPUNIT_VERSION=7
- PHPUNIT_VERSION=8

matrix:
fast_finish: true
Expand All @@ -45,16 +45,16 @@ matrix:
- php: '7.2'
env: COMPOSER_FLAGS="--prefer-lowest"
- php: '7.3'
env: SYMFONY=3.4.*
env: SYMFONY=4.4.*
- php: '7.3'
env: SYMFONY='dev-master as 3.4.x-dev'
env: SYMFONY='dev-master as 4.4.x-dev'
- php: '7.3'
env: SYMFONY_DEPRECATIONS_HELPER=0
allow_failures:
- php: 7.4snapshot
- php: 7.4
- php: nightly
- env: SYMFONY_DEPRECATIONS_HELPER=0
- env: SYMFONY='dev-master as 3.4.x-dev'
- env: SYMFONY='dev-master as 4.4.x-dev'

before_install:
- git remote add upstream ${UPSTREAM_URL} && git fetch --all
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
"sonata-project/datagrid-bundle": "^2.3",
"sonata-project/doctrine-extensions": "^1.0",
"sonata-project/easy-extends-bundle": "^2.5",
"symfony/config": "^3.4 || ^4.2",
"symfony/console": "^3.4 || ^4.2",
"symfony/dependency-injection": "^3.4 || ^4.2",
"symfony/event-dispatcher": "^3.4 || ^4.2",
"symfony/form": "^3.4 || ^4.2",
"symfony/http-foundation": "^3.4 || ^4.2",
"symfony/http-kernel": "^3.4 || ^4.2",
"symfony/security-core": "^3.4 || ^4.2",
"symfony/config": "^4.4",
"symfony/console": "^4.4",
"symfony/dependency-injection": "^4.4",
"symfony/event-dispatcher": "^4.4",
"symfony/form": "^4.4",
"symfony/http-foundation": "^4.4",
"symfony/http-kernel": "^4.4",
"symfony/security-core": "^4.4",
"zendframework/zenddiagnostics": "^1.0"
},
"conflict": {
Expand All @@ -50,7 +50,7 @@
"nelmio/api-doc-bundle": "^2.4",
"sonata-project/doctrine-orm-admin-bundle": "^3.4",
"swiftmailer/swiftmailer": "^5.0 || ^6.0",
"symfony/phpunit-bridge": "^4.2"
"symfony/phpunit-bridge": "^5.0"
},
"suggest": {
"guzzlehttp/guzzle": "If you want to get a status report when using the rabbitMQ backend.",
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/MessageManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
namespace Sonata\NotificationBundle\Entity;

use Doctrine\ORM\QueryBuilder;
use Sonata\CoreBundle\Model\BaseEntityManager;
use Sonata\DatagridBundle\Pager\Doctrine\Pager;
use Sonata\DatagridBundle\ProxyQuery\Doctrine\ProxyQuery;
use Sonata\Doctrine\Entity\BaseEntityManager;
use Sonata\NotificationBundle\Model\MessageInterface;
use Sonata\NotificationBundle\Model\MessageManagerInterface;

Expand Down
6 changes: 3 additions & 3 deletions src/Model/MessageManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

namespace Sonata\NotificationBundle\Model;

use Sonata\CoreBundle\Model\ManagerInterface;
use Sonata\CoreBundle\Model\PageableManagerInterface;
use Sonata\DatagridBundle\Pager\PageableInterface;
use Sonata\Doctrine\Model\ManagerInterface;

interface MessageManagerInterface extends ManagerInterface, PageableManagerInterface
interface MessageManagerInterface extends ManagerInterface, PageableInterface
{
/**
* @return int
Expand Down
2 changes: 1 addition & 1 deletion tests/Backend/BackendHealthCheckTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class BackendHealthCheckTest extends TestCase
{
public function setUp(): void
protected function setUp(): void
{
if (!class_exists(Success::class)) {
$this->markTestSkipped('ZendDiagnostics\Result\Success does not exist');
Expand Down

0 comments on commit a8576b5

Please sign in to comment.