mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
da1bf8da21
* feat(phpstan): pick up extended model relations typings * feat(phpstan): pick up extended model date attributes * feat(core): introduce `castAttribute` extender Stops using `dates` as it's deprecated in laravel 8 * feat(phpstan): pick up extended model attributes through casts * fix: extenders not resolved when declared namespace * fix(phpstan): new model attributes are always nullable * chore(phpstan): add helpful cache clearing command * Apply fixes from StyleCI * chore: improve extend files provider logic * chore: rename `castAttribute` to just `cast` * chore: update phpstan package to detect `cast` method * chore: enable phpstan in bundled extensions * chore: rebasing conflicts * chore: rebasing conflicts * chore: typings for latest 1.7 changes Signed-off-by: Sami Mazouz <sychocouldy@gmail.com>
38 lines
978 B
PHP
38 lines
978 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
use Flarum\Akismet\Listener;
|
|
use Flarum\Akismet\Provider\AkismetProvider;
|
|
use Flarum\Approval\Event\PostWasApproved;
|
|
use Flarum\Extend;
|
|
use Flarum\Post\Event\Hidden;
|
|
use Flarum\Post\Event\Saving;
|
|
use Flarum\Post\Post;
|
|
|
|
return [
|
|
(new Extend\Frontend('forum'))
|
|
->js(__DIR__.'/js/dist/forum.js'),
|
|
|
|
(new Extend\Frontend('admin'))
|
|
->js(__DIR__.'/js/dist/admin.js'),
|
|
|
|
new Extend\Locales(__DIR__.'/locale'),
|
|
|
|
(new Extend\Event())
|
|
->listen(Hidden::class, Listener\SubmitSpam::class)
|
|
->listen(PostWasApproved::class, Listener\SubmitHam::class)
|
|
->listen(Saving::class, Listener\ValidatePost::class),
|
|
|
|
(new Extend\ServiceProvider())
|
|
->register(AkismetProvider::class),
|
|
|
|
(new Extend\Model(Post::class))
|
|
->cast('is_spam', 'bool'),
|
|
];
|