Coder Social home page Coder Social logo

Comments (7)

guiwoda avatar guiwoda commented on June 21, 2024

Hi @alexgiuvara!
Documentation might be outdated, please try:

$builder->tree()->asNestedSet();

from fluent.

 avatar commented on June 21, 2024

the same thing:
[InvalidArgumentException] Fluent builder method [tree] does not exist, where $builder is an instance of LaravelDoctrine\Fluent\Fluent

from fluent.

 avatar commented on June 21, 2024

It works when I include namespace
use LaravelDoctrine\Fluent\Extensions\Gedmo\Tree;
in mapping class,
but
php artisan doctrine:schema:update it doesn't apply changes in database:
Nothing to update - your database is already in sync with the current entity metadata.

from fluent.

 avatar commented on June 21, 2024

Do you have a working example for Fluent extensions?
Now I'm running "php artisan doctrine:generate:entities" and I still receive [InvalidArgumentException] Fluent builder method [tree] does not exist

Thank you

from fluent.

guiwoda avatar guiwoda commented on June 21, 2024

@alexgiuvara all fluent methods and extension macros are tested, you can take a look at the tests to see usage. But both your errors sound like you're missing a service provider.
Can you paste your providers here? Have you included \LaravelDoctrine\Extensions\GedmoExtensionsServiceProvider?

from fluent.

 avatar commented on June 21, 2024

I replaced that provider with my own because of Fluent builder method [tree] does not exist. It seems that Extensions are not enabled.
Providers:
LaravelDoctrine\ORM\DoctrineServiceProvider::class,
// LaravelDoctrine\Extensions\GedmoExtensionsServiceProvider::class,
App\Providers\GedmoFluentServiceProvider::class,
LaravelDoctrine\Extensions\BeberleiExtensionsServiceProvider::class,
GedmoFluentServiceProvider:
namespace App\Providers;

use Doctrine\Common\Annotations\AnnotationRegistry;
use Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain;
use Gedmo\DoctrineExtensions;
use Illuminate\Support\ServiceProvider;
use LaravelDoctrine\Fluent\Extensions\GedmoExtensions;
use LaravelDoctrine\Fluent\FluentDriver;

class GedmoFluentServiceProvider extends ServiceProvider
{
public function boot()
{
// GedmoExtensions::registerAll(new MappingDriverChain());

(new MappingDriverChain())->addDriver(
new FluentDriver($this->app->make('config')->get('doctrine.managers.default.mappings')),
'Gedmo'
);
$extensions = [
\LaravelDoctrine\Fluent\Extensions\Gedmo\Blameable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\IpTraceable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Loggable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Sluggable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\SoftDeleteable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Sortable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Timestampable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Translatable::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Tree::class,
\LaravelDoctrine\Fluent\Extensions\Gedmo\Uploadable::class,
];
// dd(\LaravelDoctrine\Fluent\Extensions\Gedmo\Tree::enable());
foreach ($extensions as $extension) {
$extension::enable();
}

$registry = $this->app->make('registry');

foreach ($registry->getManagers() as $manager) {
$chain = $manager->getConfiguration()->getMetadataDriverImpl();
$reader = $chain->getReader();

if ($this->app->make('config')->get('doctrine.gedmo.all_mappings', false)) {
DoctrineExtensions::registerMappingIntoDriverChainORM(
$chain,
$reader
);
} else {
DoctrineExtensions::registerAbstractMappingIntoDriverChainORM(
$chain,
$reader
);
}
}

//when running "php artisan doctrine:schema:update" it fixes:
//[Doctrine\Common\Annotations\AnnotationException]
//[Semantical Error] The annotation "@Doctrine\ORM\Mapping\MappedSuperclass" in class
//Gedmo\Translatable\Entity\MappedSuperclass\AbstractPersonalTranslation does not exist, or could not be auto-loaded.
AnnotationRegistry::registerFile(base_path('vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php'));
}

from fluent.

guiwoda avatar guiwoda commented on June 21, 2024

I'm sorry, but I can't help you if you're replacing part of the code that we deem necessary and then saying something doesn't work.
Please follow the documentation on installing extensions, it works for everyone else (including myself).

I'll close this issue and add a new one regarding the outdated docs on Tree.

from fluent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.