mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-16 17:18:38 -05:00
14 lines
250 B
PHP
14 lines
250 B
PHP
|
|
<?php
|
||
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
||
|
|
|
||
|
|
namespace Icinga\Util;
|
||
|
|
|
||
|
|
class File
|
||
|
|
{
|
||
|
|
public static function create($filename, $mode = 0664)
|
||
|
|
{
|
||
|
|
fclose(fopen($filename, 'a'));
|
||
|
|
chmod($filename, $mode);
|
||
|
|
}
|
||
|
|
}
|