i2ml / Portail_saad

Missing class doc comment PHP-D1001
Documentation
Minor
2 years ago2 years old
Doc comment missing for class Tests\Support\Models\ExampleModel
 4
 5use CodeIgniter\Model;
 6
 7class ExampleModel extends Model 8{
 9    protected $table          = 'factories';
10    protected $primaryKey     = 'id';
Doc comment missing for class Tests\Support\Database\Seeds\ExampleSeeder
 4
 5use CodeIgniter\Database\Seeder;
 6
 7class ExampleSeeder extends Seeder 8{
 9    public function run()
10    {
Doc comment missing for class Tests\Support\Database\Migrations\ExampleMigration
 4
 5use CodeIgniter\Database\Migration;
 6
 7class ExampleMigration extends Migration 8{
 9    protected $DBGroup = 'tests';
10
Doc comment missing for class Config\View
 4
 5use CodeIgniter\Config\View as BaseView;
 6
 7class View extends BaseView 8{
 9    /**
10     * When false, the view method will clear the data between each
Doc comment missing for class Config\Validation
 7use CodeIgniter\Validation\FormatRules;
 8use CodeIgniter\Validation\Rules;
 9
10class Validation11{
12    //--------------------------------------------------------------------
13    // Setup