for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the LineMob package.
*
* (c) Ishmael Doss <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LineMob\Core\Storage;
/**
* @author Ishmael Doss <[email protected]>
class CommandData implements CommandDataInterface
{
* @var string
private $lineUserId;
private $lineActiveCmd;
* @var array
private $lineCommandData = [];
* {@inheritdoc}
public function getLineUserId()
return $this->lineUserId;
}
public function setLineUserId($lineUserId)
$this->lineUserId = $lineUserId;
public function getLineActiveCmd()
return $this->lineActiveCmd;
public function setLineActiveCmd($lineActiveCmd)
$this->lineActiveCmd = $lineActiveCmd;
public function getLineCommandData()
return $this->lineCommandData;
public function setLineCommandData(array $lineCommandData)
$this->lineCommandData = $lineCommandData;