first commit

This commit is contained in:
Rachit Bhargava
2023-07-21 17:12:10 -04:00
parent d0fe47dde4
commit 5d0f0734d8
14003 changed files with 2829464 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Yoast\WP\SEO\Models;
use Yoast\WP\Lib\Model;
/**
* Table definition for the Prominent Words table.
*
* @property int $id The unique ID of this prominent word.
* @property string $stem The stem of the prominent word.
* @property int $indexable_id The ID of the indexable in which the prominent word is located.
* @property float $weight Currently just the nr. of occurrences (of stemmed prominent word in indexable) But could be any weight value (higher means that it carries more weight in the final calculation).
*/
class Prominent_Words extends Model {}