garygreen / pretty-routes

Pretty routes for Laravel
655 stars 74 forks source link

Added definition of deprecated methods and classes #70

Closed andrey-helldar closed 3 years ago

andrey-helldar commented 4 years ago

If an deprecated label is set on a method, only its line will be crossed out. If the deprecated label is set on the class, then all its methods will be crossed out.

For example:

namespace App\Http\Controllers\Api\V1\Master;

/** @deprecated */
class BookingServicesController
{
  public function index()
  // ...
}

class BookingOrdersController
{
  /**
   * @deprecated
   */
  public function items()
  // ...
}

Result: 2020-05-26_16-27-04

andrey-helldar commented 4 years ago

Ping, @garygreen :)

andrey-helldar commented 4 years ago

Pong, @garygreen :)