['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null], 'name' => ['type' => 'string', 'length' => 24, 'null' => false, 'default' => null, 'collate' => 'utf8_bin', 'comment' => '', 'precision' => null, 'fixed' => null], 'text' => ['type' => 'string', 'length' => 255, 'null' => true, 'default' => null, 'collate' => 'utf8_bin', 'comment' => '', 'precision' => null, 'fixed' => null], '_constraints' => [ 'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []], ], '_options' => [ 'engine' => 'InnoDB', 'collation' => 'utf8_bin' ], ]; // @codingStandardsIgnoreEnd /** * Init method * * @return void */ public function init() { $this->records = [ [ 'id' => 1, 'name' => 'creation', 'text' => 'Aktives oder Bedingsungsloses Grundeinkommen' ], [ 'id' => 2, 'name' => 'transfer', 'text' => 'Einfache Überweisung' ] ]; parent::init(); } }