Skip to content

Commit e9fcc7e

Browse files
committed
feat: Remove pimple container
1 parent b9da276 commit e9fcc7e

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
],
2222
"require": {
2323
"php": "^7.1 || ^8.0",
24-
"pimple/pimple": "~3.0",
2524
"twig/twig": "~2.12",
2625
"nikic/php-parser": "~4.6",
2726
"michelf/php-markdown": "~1.3",

src/Doctum.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use PhpParser\NodeVisitor\NameResolver;
1616
use PhpParser\ParserFactory;
1717
use PhpParser\PrettyPrinter\Standard as PrettyPrinter;
18-
use Pimple\Container;
1918
use Doctum\Parser\ClassTraverser;
2019
use Doctum\Parser\ClassVisitor;
2120
use Doctum\Parser\CodeParser;
@@ -37,7 +36,7 @@
3736
use Wdes\phpI18nL10n\plugins\MoReader;
3837
use Wdes\phpI18nL10n\Launcher;
3938

40-
class Doctum extends Container
39+
class Doctum
4140
{
4241
public const VERSION_MAJOR = 5;
4342
public const VERSION_MINOR = 2;
@@ -51,8 +50,6 @@ class Doctum extends Container
5150

5251
public function __construct($iterator = null, array $config = [])
5352
{
54-
parent::__construct();
55-
5653
$sc = $this;
5754

5855
if (null !== $iterator) {

0 commit comments

Comments
 (0)