mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-05 15:20:11 +02: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);
|
|
}
|
|
} |