Skip to content

Instantly share code, notes, and snippets.

@alanwillms
Created August 6, 2015 22:45
Show Gist options
  • Save alanwillms/f169a37083919fca2af8 to your computer and use it in GitHub Desktop.
Save alanwillms/f169a37083919fca2af8 to your computer and use it in GitHub Desktop.
Liskov 2: PHP constructor overwriting
<?php
class ClasseBase
{
public function __construct($a) { } // um parâmetro
}
class SubClasse extends ClasseBase
{
public function __construct($a, $b) { } // dois parâmetros
}
// Sucesso!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment