mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
12 lines
103 B
PHP
12 lines
103 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
class NullFile
|
|
{
|
|
public function store()
|
|
{
|
|
return null;
|
|
}
|
|
}
|