for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GeminiLabs\SiteReviews\Defaults;
class SlackDefaults extends DefaultsAbstract
{
/**
* The values that should be cast before sanitization is run.
* This is done before $sanitize and $enums.
*/
public array $casts = [
'assigned_links' => 'string',
'header' => 'string',
];
protected function defaults(): array
return [
'assigned_links' => '',
'header' => '',
}