Skip to content

Instantly share code, notes, and snippets.

@buiquangduc
Created January 24, 2018 16:29
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 buiquangduc/0ae688c9c001ff457fe598ceaecc858f to your computer and use it in GitHub Desktop.
Save buiquangduc/0ae688c9c001ff457fe598ceaecc858f to your computer and use it in GitHub Desktop.
Protected function example
<?php
namespace App;
use Sober\Controller\Controller;
class FrontPage extends Controller
{
/**
* This function will be represented as $test_variable in single-product.blade.php file.
*
* @return string.
*/
public function custom_title() {
$this->_custom_title();
}
/**
* Protected function will be used as internal controller methods, because all the public methods are exposed.
*
* @return string.
*/
protected function _custom_title() {
return 'Front Page custom title';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment