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.
|
<?php
|
|
|
|
namespace Krizalys\Onedrive;
|
|
|
|
class StreamBackEnd
|
|
{
|
|
// Memory-backed stream.
|
|
const MEMORY = 1;
|
|
|
|
// Temporary file-backed stream. A temporary file is actually used if the
|
|
// stream contents exceeds 2 MiB.
|
|
const TEMP = 2;
|
|
}
|