Skip to content

Commit

Permalink
Replaced $VID:$ in all php files with 5.0.30.p.
Browse files Browse the repository at this point in the history
  • Loading branch information
EE DevBox Server committed Nov 25, 2024
1 parent 7459d2e commit 2dd6478
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions core/db_classes/EE_Line_Item.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public function set_quantity(int $quantity)
* @return void
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
public function incrementQuantity(int $quantity = 1)
{
Expand All @@ -283,7 +283,7 @@ public function incrementQuantity(int $quantity = 1)
* @return void
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
public function decrementQuantity(int $quantity = 1)
{
Expand Down
4 changes: 2 additions & 2 deletions core/db_classes/EE_Question.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static function new_instance_from_db($props_n_values = [], $timezone = ''
* @return EEM_Question
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
private function getModel(): EEM_Question
{
Expand Down Expand Up @@ -747,7 +747,7 @@ public function should_have_question_options(): bool
* @return bool
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
public function isEnumType(): bool
{
Expand Down
2 changes: 1 addition & 1 deletion core/db_classes/EE_Registration.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2603,7 +2603,7 @@ public function defaultRegistrationStatus(): string
* @return string
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
public function cancelRegistrationConfirmationCode(): string
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* @package EventEspresso\core\domain\entities\routing\handlers\frontend
* @author Brent Christensen
* @since $VID:$
* @since 5.0.30.p
*/
class RegistrationCheckoutRequests extends FrontendRequests
{
Expand Down
6 changes: 3 additions & 3 deletions core/domain/entities/shortcodes/EspressoCancelled.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function processShortcode($attributes = array())
* @param EE_Registration $registration
* @return string
* @throws EE_Error
* @since $VID:$
* @since 5.0.30.p
*/
private function cancelRegistrationConfirmationForm(EE_Registration $registration): string
{
Expand All @@ -129,7 +129,7 @@ private function cancelRegistrationConfirmationForm(EE_Registration $registratio
* @return string
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
private function cancelRegistration(EE_Registration $registration, string $confirmation_code): string
{
Expand Down Expand Up @@ -164,7 +164,7 @@ private function cancelRegistration(EE_Registration $registration, string $confi
* @return string
* @throws EE_Error
* @throws ReflectionException
* @since $VID:$
* @since 5.0.30.p
*/
private function clearCartAndCancelAllRegistrations(): string
{
Expand Down
2 changes: 1 addition & 1 deletion core/domain/services/capabilities/FeatureFlagsConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class FeatureFlagsConfig extends JsonDataWordpressOption

/**
* @var array|null
* @since $VID:$
* @since 5.0.30.p
*/
private ?array $feature_flags_form_options = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @package Event Espresso
* @subpackage EventEspresso\core\domain\services\registration
* @author Brent Christensen
* @since $VID:$
* @since 5.0.30.p
*/
class CancelRegistrationForm extends FormHandler
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ public function get_input($name, $require_construction_to_be_finalized = true)
* @param string $html_name
* @return EE_Form_Input_Base|null
* @throws EE_Error
* @since $VID:$
* @since 5.0.30.p
*/
public function findInput(string $html_name): ?EE_Form_Input_Base
{
Expand Down Expand Up @@ -1599,7 +1599,7 @@ public function find_section_from_path($form_section_path)
* @param int $depth
* @return void
* @throws EE_Error
* @since $VID:$
* @since 5.0.30.p
*/
public static function visualize(EE_Form_Section_Base $form_section, int $depth = 0)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function __construct($input_settings = [], $use_jquery_ui = false)

/**
* @return void
* @deprecated $VID:$
* @deprecated 5.0.30.p
*/
public static function enqueue_styles_and_scripts()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Event Espresso
* @subpackage core/libraries/form_sections
* @author Brent Christensen
* @since $VID:$
* @since 5.0.30.p
*/
class EE_Table_Layout extends EE_Form_Section_Layout_Base
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package Event Espresso
* @subpackage core/libraries/form_sections
* @author Brent Christensen
* @since $VID:$
* @since 5.0.30.p
*/
class EE_Table_Row_Layout extends EE_Form_Section_Layout_Base
{
Expand Down
2 changes: 1 addition & 1 deletion core/services/addon/api/AddonApiFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* encapsulates the complex creation of AddonApi objects
*
* @package EventEspresso\core\services\addon\api
* @since $VID:$
* @since 5.0.30.p
*/
class AddonApiFactory
{
Expand Down
4 changes: 2 additions & 2 deletions core/services/addon/api/AddonApiVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public function loadRoutes()
/**
* @param string $dependency_handler_fqcn FQCN of a DependencyHandler class
* @return void
* @since $VID:$
* @since 5.0.30.p
*/
public function addDependencyHandler(string $dependency_handler_fqcn): void
{
Expand All @@ -357,7 +357,7 @@ public function addDependencyHandler(string $dependency_handler_fqcn): void

/**
* @return void
* @since $VID:$
* @since 5.0.30.p
*/
public function registerDependencies()
{
Expand Down
2 changes: 1 addition & 1 deletion core/services/addon/api/AddonRoutes.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* for tracking and loading routes for add-ons
*
* @package EventEspresso\core\services\addon\api
* @since $VID:$
* @since 5.0.30.p
*/
class AddonRoutes
{
Expand Down
2 changes: 1 addition & 1 deletion core/services/addon/api/DependencyHandlers.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Dependency handlers are classes that implement the DependencyHandlerInterface
*
* @package EventEspresso\core\services\addon\api
* @since $VID:$
* @since 5.0.30.p
*/
class DependencyHandlers
{
Expand Down
2 changes: 1 addition & 1 deletion core/services/address/Countries.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use ReflectionException;

/**
* @since $VID:$
* @since 5.0.30.p
*/
class Countries
{
Expand Down
2 changes: 1 addition & 1 deletion core/services/address/States.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use ReflectionException;

/**
* @since $VID:$
* @since 5.0.30.p
*/
class States
{
Expand Down
2 changes: 1 addition & 1 deletion modules/single_page_checkout/form/LegacySpcoForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Class LegacySpcoForm
*
* @package EventEspresso\modules\single_page_checkout\form
* @since $VID:$
* @since 5.0.30.p
*/
class LegacySpcoForm extends EE_Form_Section_Proper
{
Expand Down

0 comments on commit 2dd6478

Please sign in to comment.