Api
5 years ago
Integrations
6 years ago
StorageDriver
4 years ago
Url
6 years ago
data
6 years ago
Api.php
5 years ago
Backlog.php
5 years ago
Crypto.php
6 years ago
Device.php
6 years ago
DeviceType.php
6 years ago
EmptyConfigException.php
6 years ago
FileHandle.php
5 years ago
Filesystem.php
4 years ago
HealthStatus.php
5 years ago
IntegrationUrl.php
6 years ago
NitroPack.php
4 years ago
NoConfigException.php
5 years ago
Pagecache.php
4 years ago
PurgeType.php
6 years ago
ServiceDownException.php
5 years ago
StorageException.php
6 years ago
VariationCookieException.php
5 years ago
WebhookException.php
5 years ago
Website.php
6 years ago
FileHandle.php
19 lines
| 1 | <?php |
| 2 | namespace NitroPack\SDK; |
| 3 | |
| 4 | class FileHandle { |
| 5 | protected $handle; |
| 6 | |
| 7 | public function __construct($handle) { |
| 8 | $this->handle = $handle; |
| 9 | } |
| 10 | |
| 11 | public function getHandle() { |
| 12 | return $this->handle; |
| 13 | } |
| 14 | |
| 15 | public function setHandle($handle) { |
| 16 | $this->handle = $handle; |
| 17 | } |
| 18 | } |
| 19 |