Exakat\Tasks\Load::addCall PHP Method

addCall() private method

private addCall ( $type, $fullnspath, $callId )
    private function addCall($type, $fullnspath, $callId)
    {
        if (empty($fullnspath)) {
            return;
        }
        if (!isset($this->calls[$type][$fullnspath])) {
            $this->calls[$type][$fullnspath] = array('calls' => array(), 'definitions' => array());
        }
        $atom = $this->atoms[$callId]['atom'];
        if (!isset($this->calls[$type][$fullnspath]['calls'][$atom])) {
            $this->calls[$type][$fullnspath]['calls'][$atom] = array();
        }
        $this->calls[$type][$fullnspath]['calls'][$atom][] = $callId;
    }
Load