mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
14 lines
227 B
PHP
14 lines
227 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\QueryScopes\Models;
|
|
|
|
class Post extends PostParent
|
|
{
|
|
public function scopePublic($query)
|
|
{
|
|
return $query;
|
|
}
|
|
}
|