Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created May 2, 2017 06:23
Show Gist options
  • Save Mombuyish/2aaa45e4a25e114313bd6b38ce0d9fc9 to your computer and use it in GitHub Desktop.
Save Mombuyish/2aaa45e4a25e114313bd6b38ce0d9fc9 to your computer and use it in GitHub Desktop.
<?php
namespace App\Presenters;
class PostPresenter
{
public function status($value)
{
switch ($value) {
case 1:
return 'published';
case 2:
return 'top';
default:
return 'hidden';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment