Skip to content

Commit

Permalink
[shopsys] upgrade to Symfony 6.4 (#3584)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasLudvik authored Nov 25, 2024
2 parents e9150d4 + ff700c4 commit 95ce6e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
},
"require": {
"php": "^8.3",
"symfony/monolog-bridge": "^5.4.0"
"symfony/monolog-bridge": "^6.4.0"
}
}
4 changes: 2 additions & 2 deletions src/Cron/IteratedCronModuleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Shopsys\Plugin\Cron;

use Symfony\Bridge\Monolog\Logger;
use Monolog\Logger;

/**
* IteratedCronModuleInterface is the interface that all long-running CRON modules must implement.
Expand All @@ -21,7 +21,7 @@
interface IteratedCronModuleInterface
{
/**
* @param \Symfony\Bridge\Monolog\Logger $logger
* @param \Monolog\Logger $logger
*/
public function setLogger(Logger $logger);

Expand Down
4 changes: 2 additions & 2 deletions src/Cron/SimpleCronModuleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Shopsys\Plugin\Cron;

use Symfony\Bridge\Monolog\Logger;
use Monolog\Logger;

/**
* SimpleCronModuleInterface is the interface that all simple CRON modules must implement.
Expand All @@ -19,7 +19,7 @@
interface SimpleCronModuleInterface
{
/**
* @param \Symfony\Bridge\Monolog\Logger $logger
* @param \Monolog\Logger $logger
*/
public function setLogger(Logger $logger);

Expand Down

0 comments on commit 95ce6e0

Please sign in to comment.