Skip to content

Commit

Permalink
fix use-by-ref warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Jun 7, 2017
1 parent 1a1bb52 commit a247bd8
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -38,7 +38,8 @@ public function __construct()
public function execute( $process, $event )
{
$parameters = $process->attribute( 'parameter_list' );
$triggerName = reset( explode( '_', $parameters['trigger_name'], 2 ) );
$tmp = explode( '_', $parameters['trigger_name'], 2 );
$triggerName = reset( $tmp );
$operationName = $parameters['module_name'] . '_' . $parameters['module_function'];

$signalName = $this->getsignalName( $triggerName, $operationName );
Expand Down

0 comments on commit a247bd8

Please sign in to comment.