Skip to content

Instantly share code, notes, and snippets.

@tarlepp

tarlepp/new.php Secret

Created February 5, 2021 17:49
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 tarlepp/5af2849e7243f189264cb5be999540f3 to your computer and use it in GitHub Desktop.
Save tarlepp/5af2849e7243f189264cb5be999540f3 to your computer and use it in GitHub Desktop.
class Foo
{
public function __construct(private UserGroupResource $userGroupResource, private RoleRepository $roleRepository)
{
}
<?php
class Foo
{
private UserGroupResource $userGroupResource;
private RoleRepository $roleRepository;
public function __construct(UserGroupResource $userGroupResource, RoleRepository $roleRepository)
{
$this->userGroupResource = $userGroupResource;
$this->roleRepository = $roleRepository;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment