Skip to content

Commit

Permalink
Merge pull request #23 from zerkms/new-class/class-metadata-info
Browse files Browse the repository at this point in the history
Added `Doctrine\ORM\Mapping\ClassMetadataInfo` with single $table field
  • Loading branch information
weirdan authored Sep 11, 2019
2 parents e554698 + 50d1f3e commit ee20104
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions stubs/ClassMetadataInfo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Doctrine\ORM\Mapping;

use Doctrine\Common\Persistence\Mapping\ClassMetadata;

class ClassMetadataInfo implements ClassMetadata
{
/**
* @var array{name: string, schema: string, indexes: array, uniqueConstraints: array}
*/
public $table;
}

0 comments on commit ee20104

Please sign in to comment.