Hey, I want to build a simple web file manager. Right now I got a code looking like this:
$config = new \DoctrineExtensions\NestedSet\Config($entityManager, 'src\File');
$nsm = new \DoctrineExtensions\NestedSet\Manager($config);
$file = new \src\File();
$file->setName('Plik');
var_dump($nsm->createRoot($file));
But it doesn't work. var_dump() in last line returns me nothing, even "null"
Hey, I want to build a simple web file manager. Right now I got a code looking like this:
But it doesn't work. var_dump() in last line returns me nothing, even "null"