zendesk/zendesk_api_client_php

View on GitHub
src/Zendesk/API/Traits/Resource/Update.php

Summary

Maintainability
A
40 mins
Test Coverage
<?php

namespace Zendesk\API\Traits\Resource;

use Zendesk\API\Exceptions\RouteException;

trait Update
{

    /**
     * Update a resource
     *
     * @param int $id
     * @param array $updateResourceFields
     *
     * @param string $routeKey
     * @return null|\stdClass
     */
    public function update($id = null, array $updateResourceFields = [], $routeKey = __FUNCTION__)
    {
        $class = get_class($this);
        if (empty($id)) {
            $id = $this->getChainedParameter($class);
        }

        try {
            $route = $this->getRoute($routeKey, ['id' => $id]);
        } catch (RouteException $e) {
            if (! isset($this->resourceName)) {
                $this->resourceName = $this->getResourceNameFromClass();
            }

            $this->setRoute(__FUNCTION__, $this->resourceName . '/{id}.json');
            $route = $this->resourceName . '/' . $id . '.json';
        }

        return $this->client->put(
            $route,
            [$this->objectName => $updateResourceFields]
        );
    }
}