Passed
Push — master ( b361fa...68dd11 )
by Jakub
02:23
created

src/Resolvers/ILocaleResolver.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
declare(strict_types=1);
3
4
namespace Nexendrie\Translation\Resolvers;
5
6
/**
7
 * ILocaleResolver
8
 *
9
 * @author Jakub Konečný
10
 */
11 1
interface ILocaleResolver {
12
  /**
13
   * Resolve language
14
   */
15
  function resolve(): ?string;
0 ignored issues
show
Inline shorthand IF statement must be declared on a single line
Loading history...
16
}
17
?>