Passed
Push — master ( bb74df...01777c )
by Jakub
02:24
created

src/Resolvers/FallbackLocaleResolver.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
 * FallbackLocaleResolver
8
 * Fallback resolver when nothing else can be used
9
 * Uses just default language (specified by loader)
10
 *
11
 * @author Jakub Konečný
12
 */
13 1
class FallbackLocaleResolver implements ILocaleResolver {
14 1
  use \Nette\SmartObject;
15
  
16
  /**
17
   * Resolve language
18
   *
19
   * @return NULL
20
   */
21
  function resolve(): ?string {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
22 1
    return NULL;
23
  }
24
}
25
?>