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
// Full repo: https://github.com/CodelyTV/scala-intro-examples/ | |
package tv.codely.scala_intro_examples.lesson_09_oop | |
import org.scalatest.{Matchers, WordSpec} | |
/** | |
* In order to check all the capabilities that a case class have, just: | |
* * Compile it with: `scalac` | |
* * Inspect it with: `javap -private` | |
* |
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
// Full repo: https://github.com/CodelyTV/scala-intro-examples/ | |
package tv.codely.scala_intro_examples.lesson_09_oop | |
import org.scalatest.{Matchers, WordSpec} | |
final class CaseClassVisibilitiesSpec extends WordSpec with Matchers { | |
private val randomText = "some text" | |
private val caseClass = CaseClass(attributeInConstruct = randomText) | |
"Case Class" should { |
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 | |
declare(strict_types = 1); | |
// ****************************************************** | |
// ****************************************************** | |
// 💩🔴✋ HERENCIA ✋🔴💩 | |
// ****************************************************** | |
// ****************************************************** |
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 App\Command; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputArgument; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
use App\Domain\LogEntry; |
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
###> Docker Compose - DB ### | |
MYSQL_DATABASE=symfony | |
MYSQL_USER=codely | |
MYSQL_PASSWORD=c0d3ly | |
###< Docker Compose - DB ### | |
# In all environments, the following files are loaded if they exist, | |
# the later taking precedence over the former: | |
# | |
# * .env contains default values for the environment variables needed by the app | |
# * .env.local uncommitted file with local overrides |
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
type MethodKeys<T> = ({ [P in keyof T]: T[P] extends Function ? P : never })[keyof T]; | |
type ClassProps<T> = { | |
[key in keyof T]: | |
T[key] extends { value: any } | |
? Pick<T[key], "value">["value"] | |
: T[key] extends Object | |
? ValueObjectPrimitives<T[key]> | |
: T[key]; | |
}; |
OlderNewer