mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
18 lines
240 B
PHP
18 lines
240 B
PHP
<?php
|
|
|
|
/**
|
|
* Description of GroupContentReview
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class ContentReviewOwner extends DataExtension {
|
|
|
|
/**
|
|
*
|
|
* @var array
|
|
*/
|
|
private static $many_many = array(
|
|
"SiteTreeContentReview" => "SiteTree"
|
|
);
|
|
}
|