for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Html\Elements;
use Spatie\Html\BaseElement;
class A extends BaseElement
{
protected $tag = 'a';
/**
* @param string|null $href
*
* @return static
*/
public function href($href)
return $this->attribute('href', $href);
}