MikeDre
8/6/2018 - 6:56 PM

Class Structure

<?php

class ClassName {
  
  protect $protected_property_name;
  
  public function __construct($protected_property_name);
  {
    $this->protected_property_name = $protected_property_name;
  }
  
}

$class_variable = new ClassName();