nginxsonarrradarrplexorganizrdashboardbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbget
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
304 B
21 lines
304 B
7 years ago
|
---
|
||
|
layout: default
|
||
|
permalink: /adapter/null-test/
|
||
|
title: Null Adapter
|
||
|
---
|
||
|
|
||
|
# Null Adapter
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
Comes with the main Flysystem package.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Acts like `/dev/null`
|
||
|
|
||
|
~~~ php
|
||
|
$adapter = new League\Flysystem\Adapter\NullAdapter;
|
||
|
$filesystem = new League\Flysystem\Filesystem($adapter);
|
||
|
~~~
|