Mark Story
Mark Story
Sure. ```php // in ProductsTable $this->belongsToMany('LinkedProducts', [ 'className' => 'Products', 'joinTable' => 'products_linked_products', 'foreignKey' => 'product_id', 'targetForeignKey' => 'linked_product_id', ]); // In ProductsLinkedProductsTable $this->belongsTo('ParentProducts', [ 'foreignKey' => 'product_id', 'joinType' =>...
> Can a fix for this issue be included in cake 5.0? It could if someone wanted to put together a pull request for the changes.
This came up in my notifications again - thanks stalebot. Would passing the domain to the loader function help here? ```php declare(strict_types=1); namespace App\Test\TestCase\I18n; use App\I18n\GettextTranslator; use Cake\I18n\I18n; class GettextTranslatorTest...
> I am not sure that I fully understand your idea but if this would make the domain available inside getMessage() The suggestion I had was to pass the domain...
Yes paths are not configurable in the base package class. If you need custom path resolutions, you need a custom package class.
> (Looks like) this issue belongs to [cakephpsphinx](https://github.com/cakephp/sphinxtheme) package @gludie You're right that this issue belongs there now. The preview of your changes looks good to me. A pull request...
I like the idea. I think having comma lists makes sense for a bunch of command line applications. > The other reason: The type prefix makes it more clear what...
> in addition a global access to the container should be available if you want to create an object instance on the fly or to get a global singleton object,...
> So in the "real world" scenario this change won't have any impact on the total response time until we can make changes to URL generation too right? Yes. These...
I was able to implement partial scope resolution for scopes that use parameters. I think this gives some carrot to the way I think routes can be defined with simpler...