Laravel version update
Laravel version update
This commit is contained in:
48
vendor/flowjs/flow-php-server/src/Flow/ConfigInterface.php
vendored
Normal file
48
vendor/flowjs/flow-php-server/src/Flow/ConfigInterface.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace Flow;
|
||||
|
||||
interface ConfigInterface
|
||||
{
|
||||
/**
|
||||
* Get path to temporary directory for chunks storage
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTempDir();
|
||||
|
||||
/**
|
||||
* Generate chunk identifier
|
||||
*
|
||||
* @return callable
|
||||
*/
|
||||
public function getHashNameCallback();
|
||||
|
||||
/**
|
||||
* Callback to pre-process chunk
|
||||
*
|
||||
* @param callable $callback
|
||||
*/
|
||||
public function setPreprocessCallback($callback);
|
||||
|
||||
/**
|
||||
* Callback to preprocess chunk
|
||||
*
|
||||
* @return callable|null
|
||||
*/
|
||||
public function getPreprocessCallback();
|
||||
|
||||
/**
|
||||
* Delete chunks on save
|
||||
*
|
||||
* @param bool $delete
|
||||
*/
|
||||
public function setDeleteChunksOnSave($delete);
|
||||
|
||||
/**
|
||||
* Delete chunks on save
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function getDeleteChunksOnSave();
|
||||
}
|
Reference in New Issue
Block a user