Skip to content

Instantly share code, notes, and snippets.

@vanbrabantf
Created April 2, 2021 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanbrabantf/9020aa13a1e28cdcc0407d81e51b901a to your computer and use it in GitHub Desktop.
Save vanbrabantf/9020aa13a1e28cdcc0407d81e51b901a to your computer and use it in GitHub Desktop.
<?php
public function __construct(string $firstName, string $lastName)
{
Assert::stringNotEmpty($firstName);
Assert::stringNotEmpty($lastName);
Assert::alpha($firstName);
Assert::alpha($lastName);
$this->firstName = $firstName;
$this->lastName = $lastName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment