Skip to content

Commit

Permalink
Rename private method
Browse files Browse the repository at this point in the history
  • Loading branch information
Nik Samokhvalov committed Jan 23, 2015
1 parent 65f64e5 commit 15059f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basis/class.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private function executeTraits($type)
/**
* Set to $this->usedTraits included traits
*/
private function getUsedTraits()
private function readUsedTraits()
{
if ($this->traitsAutoExecute)
{
Expand All @@ -101,7 +101,7 @@ private function getUsedTraits()

final public function executeBasis()
{
$this->getUsedTraits();
$this->readUsedTraits();
$this->includeModules();
$this->checkAutomaticParams();
$this->checkParams();
Expand Down

0 comments on commit 15059f4

Please sign in to comment.