for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Kerox\Messenger\Model\Common\Button;
class AccountUnlink extends AbstractButton
{
/**
* AccountUnlink constructor.
*/
public function __construct()
parent::__construct(self::TYPE_ACCOUNT_UNLINK);
}
* @return \Kerox\Messenger\Model\Common\Button\AccountUnlink
public static function create(): self
return new self();