composer(deps-dev): bump ergebnis/php-cs-fixer-config from 2.3.0 to 2.4.0
1 |
<?php
|
|
2 |
|
|
3 |
declare(strict_types=1); |
|
4 |
|
|
5 |
/**
|
|
6 |
* Copyright (c) 2017-2020 Andreas Möller
|
|
7 |
*
|
|
8 |
* For the full copyright and license information, please view
|
|
9 |
* the LICENSE.md file that was distributed with this source code.
|
|
10 |
*
|
|
11 |
* @see https://github.com/ergebnis/classy
|
|
12 |
*/
|
|
13 |
|
|
14 |
namespace Ergebnis\Classy\Exception; |
|
15 |
|
|
16 |
final class ShouldNotHappen extends \LogicException implements ExceptionInterface |
|
17 |
{
|
|
18 | 1 |
public static function create(): self |
19 |
{
|
|
20 | 1 |
return new self('This should not happen.'); |
21 |
}
|
|
22 |
}
|
Read our documentation on viewing source code .