mrcnpdlk/teryt-api

View on GitHub
src/ResponseModel/Territory/WyszukanaMiejscowosc.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * TERYT-API
 *
 * Copyright (c) 2017 pudelek.org.pl
 *
 * @license MIT License (MIT)
 *
 * For the full copyright and license information, please view source file
 * that is bundled with this package in the file LICENSE
 * @author Marcin Pudełek <marcin@pudelek.org.pl>
 */

/**
 * Created by Marcin Pudełek <marcin@pudelek.org.pl>
 * Date: 06.09.2017
 */

namespace mrcnpdlk\Teryt\ResponseModel\Territory;

/**
 * Class WyszukanaMiejscowosc
 */
class WyszukanaMiejscowosc extends Miejscowosc
{
    /**
     * Identyfikator miejscowości podstawowej
     *
     * @var string
     */
    public $cityParentId;
    /**
     * Symbol rodzaju miejscowości
     *
     * @var string
     */
    public $rmId;
    /**
     * Nazwa rodzaju miejscowości
     *
     * @var string
     */
    public $rmName;

    /**
     * WyszukanaMiejscowosc constructor.
     *
     * @param \stdClass $oData Obiekt zwrócony z TerytWS1
     *
     * @throws \mrcnpdlk\Teryt\Exception
     */
    public function __construct(\stdClass $oData)
    {
        $this->communeId     = $oData->Gmi;
        $this->communeName   = $oData->Gmina;
        $this->cityName      = $oData->Nazwa;
        $this->districtId    = $oData->Pow;
        $this->districtName  = $oData->Powiat;
        $this->rmId          = $oData->Rm;
        $this->rmName        = $oData->RodzajMiejscowosci;
        $this->communeTypeId = $oData->RodzajGminy;
        $this->cityId        = $oData->Symbol;
        $this->cityParentId  = $oData->SymbolPodst;
        $this->provinceId    = $oData->Woj;
        $this->provinceName  = $oData->Wojewodztwo;

        try {
            $this->statusDate = $oData->DataStanu ? (new \DateTime($oData->DataStanu))->format('Y-m-d') : null;
        } catch (\Exception $e) {
            $this->statusDate = null;
        }

        parent::__construct();
    }
}