File: assert-isStatic.php

package info (click to toggle)
php-webmozart-assert 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,208 kB
  • sloc: php: 7,027; makefile: 13; xml: 13
file content (14 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Webmozart\Assert\Tests\StaticAnalysis;

use Closure;
use Webmozart\Assert\Assert;

/**
 * @return Closure|callable-string
 */
function isStatic(mixed $closure): Closure|string
{
    return Assert::isStatic($closure);
}