Skip to content

Commit

Permalink
Merge a9204ea into bf65b11
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxooo committed Dec 3, 2019
2 parents bf65b11 + a9204ea commit e108d4d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -17,7 +17,7 @@
},
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "~4.3",
"symfony/framework-bundle": "^3.0|^4.0",
"doctrine/orm": "~2.6",
"dragonmantank/cron-expression": "~2.0"
},
Expand Down
3 changes: 0 additions & 3 deletions src/DependencyInjection/GloobyTaskExtension.php
Expand Up @@ -19,9 +19,6 @@ class GloobyTaskExtension extends Extension
*/
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration();
$this->processConfiguration($configuration, $configs);

$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
}
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/QueuedTask.php
Expand Up @@ -7,7 +7,7 @@
/**
* @ORM\Table(
* name="task_queue",
* options={"collate"="utf8_swedish_ci"},
* options={"collate"="utf8mb4_unicode_ci", "charset"="utf8mb4"},
* indexes={
* @ORM\Index(name="execute_at_idx", columns={"execute_at"}),
* @ORM\Index(name="status_idx", columns={"status"}),
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/Schedule.php
Expand Up @@ -8,7 +8,7 @@
/**
* @ORM\Table(
* name="task_schedules",
* options={"collate"="utf8_swedish_ci"},
* options={"collate"="utf8mb4_unicode_ci", "charset"="utf8mb4"},
* indexes={
* @ORM\Index(name="active_idx", columns={"active"})
* }
Expand Down

0 comments on commit e108d4d

Please sign in to comment.