This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
# Run tests | |
test: | |
working_directory: ~/novi | |
docker: | |
- image: circleci/node:10 | |
- image: postgres:alpine | |
environment: | |
POSTGRES_USER: root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# EditorConfig is a normalisation file compatible with different editors | |
# Find more documentation here : http://editorconfig.org/#download | |
# top-most EditorConfig file | |
root = true | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
charset = utf-8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace ValueObject; | |
use ResourceBundle; | |
use Stringable; | |
final readonly class Locale implements Stringable | |
{ | |
private function __construct(public string $locale) {} |
OlderNewer