for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Copyright (c) Nate Brunette.
* Distributed under the MIT License (http://opensource.org/licenses/MIT)
*/
namespace Tebru\Gson\Annotation;
use Tebru\AnnotationReader\AbstractAnnotation;
/**
* Class SerializedName
*
* Used to define the name that should appear in json. This annotation will override
* any PropertyNamingStrategy.
* @author Nate Brunette <[email protected]>
* @Annotation
* @Target({"PROPERTY", "METHOD"})
class SerializedName extends AbstractAnnotation
{
}