getSlug() public method

Get the behavior's slug.
See also: Zumba\Swivel\BehaviorInterface
public getSlug ( ) : string
return string
Example #1
0
 /**
  * Set the behavior and it's args
  *
  * @param \Zumba\Swivel\Behavior $behavior
  * @param array $args
  * @return void
  */
 protected function setBehavior(Behavior $behavior, array $args = [])
 {
     $slug = $behavior->getSlug();
     $this->logger->debug('Swivel - Setting behavior.', compact('slug', 'args'));
     $this->behavior = $behavior;
     $this->args = $args;
 }