GithubHelp home page GithubHelp logo

Trait method newEloquentBuilder has not been applied, because there are collisions with other trait methods about laravel-mysql-spatial HOT 9 OPEN

grimzy avatar grimzy commented on August 15, 2024
Trait method newEloquentBuilder has not been applied, because there are collisions with other trait methods

from laravel-mysql-spatial.

Comments (9)

tomredhot avatar tomredhot commented on August 15, 2024 1

Same issue with https://github.com/renoki-co/laravel-eloquent-query-cache

from laravel-mysql-spatial.

grimzy avatar grimzy commented on August 15, 2024

You'd have to create your own Illuminate\Database\Eloquent\Builder implementing both:

Maybe something like the following (adjust the namespaces to your app):

namespace Grimzy\LaravelMysqlSpatial\Eloquent;

use Sofa\Eloquence\Builder as EloquenceBuilder;

class MergedBuilder extends EloquenceBuilder
{
    use SpatialBuilderTrait;
}

with SpatialBuilderTrait implementing the methods from Grimzy\LaravelMysqlSpatial\Eloquent \Builder:

namespace Grimzy\LaravelMysqlSpatial\Eloquent;

use Grimzy\LaravelMysqlSpatial\Types\GeometryInterface;

trait SpatialBuilderTrait
{
    public function update(array $values)
    {
        foreach ($values as $key => &$value) {
            if ($value instanceof GeometryInterface) {
                $value = $this->asWKT($value);
            }
        }

        return parent::update($values);
    }

    protected function asWKT(GeometryInterface $geometry)
    {
        return $this->getQuery()->raw("ST_GeomFromText('".$geometry->toWKT()."')");
    }
}

And override Eloquence::newEloquentBuilder() in your model:

use new \Grimzy\LaravelMysqlSpatial\Eloquent\MergedBuilder as Builder;

class SomeModel extends Model;
    use SpatialTrait, Eloquence;

    public function newEloquentBuilder($query)
    {
        return Builder($query);
    }
}

Can you try this out?

from laravel-mysql-spatial.

aletundo avatar aletundo commented on August 15, 2024

Sorry for the late reply, I'm going to try it asap. I already created a custom solution to fulfill the same needs which brought me to use your package. Therefore, if your solution don't work, no matter.

from laravel-mysql-spatial.

grimzy avatar grimzy commented on August 15, 2024

@aletundo I've pushed code in builder-as-trait if you want to check it out.

I'm probably merging this with master and the mysql-5.6 branches in versions 2.0.2 and 1.1.3 sometime soon.

from laravel-mysql-spatial.

aletundo avatar aletundo commented on August 15, 2024

@grimzy So, I should just use this branch instead of all the changes listed before?
Jtk, my custom solution consist of a trait with a bunch of scope and accessor methods. Obviously without using the geometric models and so on. I went through unpack the binary returned from MySQL etc. Therefore, my way was not too bad :)

from laravel-mysql-spatial.

eelco2k avatar eelco2k commented on August 15, 2024

As referenced above, I also have this problem in combination with GeneaLabs/laravel-model-caching package.

from laravel-mysql-spatial.

Daniyal-Javani avatar Daniyal-Javani commented on August 15, 2024

Same error with the NodeTrait
https://github.com/lazychaser/laravel-nestedset

from laravel-mysql-spatial.

vesper8 avatar vesper8 commented on August 15, 2024

same issue with https://github.com/jenssegers/laravel-mongodb

from laravel-mysql-spatial.

SergioFloresG avatar SergioFloresG commented on August 15, 2024
use SomeBaseTrait, SpatialTrait {
    SomeBaseTrait::newBaseQueryBuilder insteadof SpatialTrait;
}

from laravel-mysql-spatial.

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.