Altax\Module\Task\Resource\RuntimeTask::getConfig PHP 메소드

getConfig() 공개 메소드

public getConfig ( )
    public function getConfig()
    {
        return $this->task->getConfig();
    }

Usage Example

예제 #1
0
 public function testGetConfig()
 {
     $runtimeTask = new RuntimeTask(null, $this->definedTask, $this->input, $this->output);
     $this->assertSame($this->definedTask->getConfig(), $runtimeTask->getConfig());
 }