1
0
mirror of https://github.com/flarum/core.git synced 2025-10-28 14:06:30 +01:00

Extract new Flarum\Post namespace

This commit is contained in:
Franz Liedke
2017-06-24 13:43:33 +02:00
parent 3481798875
commit 66abd7ecfd
38 changed files with 146 additions and 154 deletions

View File

@@ -0,0 +1,24 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Post;
use Flarum\Foundation\AbstractValidator;
class PostValidator extends AbstractValidator
{
protected $rules = [
'content' => [
'required',
'max:65535'
]
];
}