Maknz\Slack\Client::setLinkNames PHP Method

setLinkNames() public method

Set whether messages sent will have names (like @regan) will be converted into links.
public setLinkNames ( boolean $value ) : void
$value boolean
return void
    public function setLinkNames($value)
    {
        $this->link_names = (bool) $value;
    }

Usage Example

 /**
  * Set whether messages sent will have names (like @regan)
  * will be converted into links
  *
  * @param boolean $value
  * @return void 
  * @static 
  */
 public static function setLinkNames($value)
 {
     \Maknz\Slack\Client::setLinkNames($value);
 }