Skip to content

Commit

Permalink
Fix missing ContainerConnector referenece
Browse files Browse the repository at this point in the history
  • Loading branch information
danielneubert committed Nov 16, 2020
1 parent b6d2638 commit e8da0dc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/EvalancheInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

use Neubert\EvalancheInterface\Connectors\ArticleConnector;
use Neubert\EvalancheInterface\Connectors\ArticleTypeConnector;
use Neubert\EvalancheInterface\Connectors\ContainerConnector;
use Neubert\EvalancheInterface\Connectors\ContainerTypeConnector;
use Neubert\EvalancheInterface\Connectors\FolderConnector;
use Neubert\EvalancheInterface\Connectors\PoolConnector;
Expand All @@ -18,6 +19,7 @@
*
* @method ArticleConnector article(int $reference)
* @method ArticleTypeConnector articleType(int $reference)
* @method ContainerConnector container(int $reference)
* @method ContainerTypeConnector containerType(int $reference)
* @method FolderConnector folder(? int $reference = null)
* @method PoolConnector pool(? int $reference = null)
Expand All @@ -38,6 +40,7 @@ class EvalancheInterface
protected $connectors = [
'Article' => ArticleConnector::class,
'ArticleType' => ArticleTypeConnector::class,
'Container' => ContainerConnector::class,
'ContainerType' => ContainerTypeConnector::class,
'Folder' => FolderConnector::class,
'Pool' => PoolConnector::class,
Expand Down

0 comments on commit e8da0dc

Please sign in to comment.