Skip to content

Instantly share code, notes, and snippets.

@Maksclub
Last active June 13, 2019 20:32
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 Maksclub/b984fc582d6747b45880e56560a8b920 to your computer and use it in GitHub Desktop.
Save Maksclub/b984fc582d6747b45880e56560a8b920 to your computer and use it in GitHub Desktop.
Объяснение реализации Посетителя
<?php
class EmailSender implements SenderInterface
{
# prev behavior
public function accept(Visitor $visitor)
{
$visitor->visitSenderEmail($this);
}
}
class SmsSender implements SenderInterface
{
# prev behavior
public function accept(Visitor $visitor)
{
$visitor->visitSmsSender($this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment