nur-sery/src/os/file/SharedFile.php

16 lines
400 B
PHP
Raw Normal View History

2023-12-31 18:54:10 +04:00
<?php
namespace nur\sery\os\file;
use nulib\ValueException;
class SharedFile extends FileWriter {
const ALLOW_LOCKING = true;
const DEFAULT_MODE = "c+b";
function __construct($file, ?string $mode=null, bool $throwOnError=true, ?bool $allowLocking=null) {
if ($file === null) throw ValueException::null("file");
parent::__construct($file, $mode, $throwOnError, $allowLocking);
}
}