Current File : /home/resuelf/www/wp-content/plugins/nitropack/nitropack-sdk/NitroPack/SDK/FileHandle.php
<?php
namespace NitroPack\SDK;

class FileHandle {
    protected $handle;

    public function __construct($handle) {
        $this->handle = $handle;
    }

    public function getHandle() {
        return $this->handle;
    }

    public function setHandle($handle) {
        $this->handle = $handle;
    }
}