View on GitHub

RefactoringPHP

A PHP version of the refactors from Refactoring: Improving the Design of Existing Code (Second Edition) by Martin Fowler

Move Function (198)

Old Code

<?php
class Account
{
    public function getOverDraftCharge()
    {
    ...
    }
}

New Code

<?php
class AccountType
{
    public function getOverDraftCharge()
    {
    ...
    }
}