/**
 * Set alert type info.
 *
 * @return self Returns instance of the Rule class.
 *
 * @access public
 */
public function info(): self

Examples

Set Alert element type info using fluent interface

use function Thermage\alert;
use function Thermage\render;

// ...

render(
  alert('Stay RAD!')->info()
);

Set Alert element type info using magic classes pipeline

use function Thermage\alert;
use function Thermage\render;

// ...

render( 
  alert('Stay RAD!', 'info')
);
Terminal
$ php thermage.php
Stay RAD!