Coder Social home page Coder Social logo

imanghafoori1 / laravel-smart-facades Goto Github PK

View Code? Open in Web Editor NEW
114.0 5.0 8.0 103 KB

Strategy design pattern in laravel, the easiest way.

License: MIT License

PHP 100.00%
strategy-pattern strategy-design-pattern laravel-framework laravel-package laravel-facade

laravel-smart-facades's People

Contributors

amirsadeghi1 avatar i-iman-i avatar imanghafoori1 avatar krisell avatar mehradsadeghi avatar rahi69 avatar stylecibot avatar svenluijten avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

laravel-smart-facades's Issues

shouldProxyTo does not work

hello, there seems to be a small problem
Here I should have an (A item) and a (B item) in the output but I only have two (A)
Please take a look, thank you
console router:

Artisan::command('test', function () {
    FooModelSmartFacade::shouldProxyTo(\App\FooA::class);
    $resultA = FooModelSmartFacade::query()->first()->toArray();

    FooModelSmartFacade::shouldProxyTo(\App\FooB::class);
    $resultB = FooModelSmartFacade::query()->first()->toArray();
    dump($resultA, $resultB);
});

my facade:

use Illuminate\Database\Eloquent\Model;

/**
 * @mixin Model
 */
class FooModelSmartFacade extends SmartFacade
{

}

models:

namespace App;

use Illuminate\Database\Eloquent\Model;

class FooA extends Model
{
    protected $table = 'foo_a';
    protected $fillable = [
        'title'
    ];

}
namespace App;

use Illuminate\Database\Eloquent\Model;

class FooB extends Model
{
    protected $table = 'foo_b';
    protected $fillable = [
        'title'
    ];

}

DB rows:
10-09-1401 22-21-01

console result:
10-09-1401 22-19-24

test on laravel version: (8.83.0) and (6.20.8)
package version: (v1.0.9)
php version: (7.4.19)

Releasing Latest Code Base

Hello Iman.
It seems you haven't released (tagged) the latest changes of your code-base on packagist.
When one downloads the latest version of package (v1.0.6) some functionalities are not available such as withDriver and changeProxyTo methods (these methods are missing from Imanghafoori\SmartFacades\Facade.php file).

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.