for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Bouncer package.
*
* (c) François Hodierne <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Bouncer\Resource;
use Bouncer\Resource;
class UserAgentPart extends Resource
{
/**
* Name
* @var string
protected $name;
* Icon
protected $icon;
* Label
protected $label;
public function getName()
return $this->name;
}
public function setName($name)
$this->name = $name;
public function getIcon()
return $this->icon;
public function setIcon($icon)
$this->icon = $icon;
public function getLabel()
return $this->label;
public function setLabel($label)
$this->label = $label;