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