You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TableTable->newEntity() should be migrated to Table->newEmptyEntity(), validating that newEntity() did not originally contain any arguments / data for entity creation
Paginator$this->Paginator->counter(['format' => __('format text')]) should be migrated to $this->Paginator->counter(__('format text'))
Form public function buildValidator(Event $event, Validator $validator, $name) should be migrated to public function validationDefault(Validator $validator): Validator if the method validationDefault is not yet defined
Formpublic function validate(array $data) should be migrated to public function validate(array $data): bool
Formprotected function _buildSchema(Schema $schema) should be migrated to protected function _buildSchema(Schema $schema): Schema
Formpublic function getData($field = null) should get migrated to public function getData(?string $field = null)
Table->newEntity()
should be migrated toTable->newEmptyEntity()
, validating thatnewEntity()
did not originally contain any arguments / data for entity creation$this->Paginator->counter(['format' => __('format text')])
should be migrated to$this->Paginator->counter(__('format text'))
public function buildValidator(Event $event, Validator $validator, $name)
should be migrated topublic function validationDefault(Validator $validator): Validator
if the methodvalidationDefault
is not yet definedpublic function validate(array $data)
should be migrated topublic function validate(array $data): bool
protected function _buildSchema(Schema $schema)
should be migrated toprotected function _buildSchema(Schema $schema): Schema
public function getData($field = null)
should get migrated topublic function getData(?string $field = null)
should be migrated to
thus specifically providing order, if it was not provided before
The text was updated successfully, but these errors were encountered: