Commit d7d8acd7 authored by Stefan Auditor's avatar Stefan Auditor
Browse files

Move variables to the beginning of the class

parent 5b6ee562
Loading
Loading
Loading
Loading
Original line number Diff line number Diff line
@@ -13,6 +13,13 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 */
class GeocoderController extends ControllerBase {

  /**
   * Geocoder service.
   *
   * @var \Drupal\geocoder_autocomplete\GeocoderJsonConsumer
   */
  protected $geocoderService;

  /**
   * {@inheritdoc}
   */
@@ -22,13 +29,6 @@ class GeocoderController extends ControllerBase {
    );
  }

  /**
   * Geocoder service.
   *
   * @var \Drupal\geocoder_autocomplete\GeocoderJsonConsumer
   */
  protected $geocoderService;

  /**
   * Constructs a GeocoderController object.
   *