Skip to content

Instantly share code, notes, and snippets.

@hellofromtonya
Created March 7, 2018 01:57
Show Gist options
  • Save hellofromtonya/1aa266ac429c3f2d918acf784372529b to your computer and use it in GitHub Desktop.
Save hellofromtonya/1aa266ac429c3f2d918acf784372529b to your computer and use it in GitHub Desktop.
Testing PhpStorm's Refactoring Tools
<?php
namespace KTC\Test;
class Base {
protected $args;
protected $model;
public function init() {
}
}
<?php
namespace KTC\Test;
class Refactorer extends Base {
protected function do_something() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment