public static function getTags($requestTags): array
{
$tags = [];
if ($requestTags && is_array($requestTags)) {
$tags = array_map(function($elem){
if(!is_numeric($elem)){
$newTag = Tag::upsert(['name' => $elem]);
return $newTag->id;
}
return $elem;
}, $requestTags);
}
return $tags;
}
MaxRequestLen перекрывает max_post_size