Skip to content

Instantly share code, notes, and snippets.

@hgraca
hgraca / M-V-C-VM_-_Controller_example.php
Last active August 17, 2017 07:05
A simple example of my prefered MVC implementation, with featuring the Model, a View, a Controller, and a ViewModel.
<?php
// src/UI/Admin/Some/Controller/Namespace/Detail/SomeEntityDetailController.php
namespace UI\Admin\Some\Controller\Namespace\Detail;
// use ...
final class SomeEntityDetailController
{
/**
@hgraca
hgraca / MVP_snippet.php
Last active April 2, 2017 20:17
MVP snippet used in my blog post about MVC and variants
<?php
class MyPresenter
// ...
public function showUsers()
{
// ...
$data = $this->accountManager->getUserDetails($from = 10, $to = 20);
$this->view->bind('list', $data);
// ...