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
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]; | |
}; |
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
###> 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 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 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 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 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 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 StandardClassVisibilitiesSpec extends WordSpec with Matchers { | |
private val randomText = "some text" | |
private val standardClass = new StandardClass(attributeInConstruct = randomText) | |
"Standard Class" should { |
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
package tv.codely.scala_intro_examples.lesson_09_oop | |
import scala.util.Random | |
object NumberWithCompanionObject { | |
def apply(value: String): NumberWithCompanionObject = NumberWithCompanionObject(value = value.toInt) | |
def random: NumberWithCompanionObject = NumberWithCompanionObject(value = Random.nextInt()) | |
} |
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
package tv.codely.scala_intro_examples.lesson_09_oop | |
final case class CaseClass( | |
attributeInConstruct: String, | |
private val privateAttributeInConstruct: String = "Some default value" | |
) { | |
val attributeInBody = "public body attribute value" | |
private val privateAttributeInBody = "private body attribute value" | |
} |
NewerOlder