This file contains 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
FROM php:7.4-alpine | |
RUN docker-php-ext-install pdo pdo_mysql |
This file contains 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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"window.zoomLevel": 3, | |
"editor.formatOnSave": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true, | |
"**/.hg/store/**": true, | |
"**/vendor/*/**": true |
This file contains 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 | |
#[Attribute] | |
class Letter | |
{ | |
public const UPPER_CASE = 'UPPER_CASE'; | |
public const LOWER_CASE = 'LOWER_CASE'; | |
public function __construct( | |
public string $modifier |
This file contains 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 | |
#[Attribute] | |
class Letter | |
{ | |
public const UPPER_CASE = 'UPPER_CASE'; | |
public const LOWER_CASE = 'LOWER_CASE'; | |
public const FIRST_CHARACTER_UPPER_CASE = 'FIRST_CASE_UPPER'; | |
public function __construct( |
This file contains 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.22.1" | |
\language "english" | |
\header { | |
title = "Título" | |
composer = "compositor" | |
subtitle = "Descrição adicional." | |
} | |
\paper { |