Pickle\Package\PHP\Command\Release\Windows\Binary::packLog PHP Method

packLog() public method

public packLog ( Pickle\Base\Interfaces\Package\Build $build = null )
$build Pickle\Base\Interfaces\Package\Build
    public function packLog(Interfaces\Package\Build $build = null)
    {
        if (!$build) {
            $build = $this->build;
        }
        $path = $this->getZipBaseName($build) . '-logs.zip';
        $build->packLog($path);
        return realpath($path);
    }