1<?php
2
3declare(strict_types=1);
4
5/**
6 * This file is part of phpDocumentor.
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 *
11 * @link      http://phpdoc.org
12 */
13
14namespace phpDocumentor\Reflection\DocBlock\Tags\Factory;
15
16/**
17 * @deprecated This contract is totally covered by Tag contract. Every class using StaticMethod also use Tag
18 */
19interface StaticMethod
20{
21    /**
22     * @return mixed
23     */
24    public static function create(string $body);
25}
26