comsave/salesforce-mapper-bundle

View on GitHub
src/LogicItLab/Salesforce/MapperBundle/Annotation/Relation.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace LogicItLab\Salesforce\MapperBundle\Annotation;

use Doctrine\Common\Annotations\Annotation;

/**
 * Defines a relation between Salesforce objects
 *
 * @Annotation
 */
class Relation extends Annotation
{
    public $field;
    public $class;
    public $name;
}