Api
7 months ago
Integrations
1 month ago
StorageDriver
1 year ago
Url
1 year ago
Utils
1 year ago
data
1 year ago
Api.php
1 year ago
Backlog.php
1 year ago
BacklogReplayTimeoutException.php
1 year ago
ChallengeProcessingException.php
1 year ago
ChallengeVerificationException.php
1 year ago
ConfigFetcherException.php
1 year ago
Crypto.php
1 year ago
Device.php
1 year ago
DeviceType.php
1 year ago
ElementRevision.php
1 year ago
EmptyConfigException.php
1 year ago
ExcludeEntry.php
1 year ago
ExcludeOperationType.php
1 year ago
FileHandle.php
1 year ago
Filesystem.php
1 year ago
HealthStatus.php
1 year ago
IntegrationUrl.php
1 year ago
NitroPack.php
1 month ago
NoConfigException.php
1 year ago
Pagecache.php
5 months ago
PurgeType.php
1 year ago
ServiceDownException.php
1 year ago
StorageException.php
1 year ago
VariationCookieException.php
1 year ago
WebhookException.php
1 year ago
Website.php
1 year 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 |