Commit b4ba757c authored by Pawel G's avatar Pawel G
Browse files

Issue #2762411 by Nitesh Pawar: Remove @file tags in php files

parent aad5328d
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
<?php
/**
 * @file
 * Contains \Drupal\simple_sitemap\Batch.
 *
 * Helper functions for the Drupal batch API.
 * @see https://api.drupal.org/api/drupal/core!includes!form.inc/group/batch/8
 */

namespace Drupal\simple_sitemap;

+0 −4
Original line number Diff line number Diff line
<?php
/**
 * @file
 * Contains \Drupal\simple_sitemap\Controller\SimplesitemapController.
 */

namespace Drupal\simple_sitemap\Controller;

+0 −6
Original line number Diff line number Diff line
<?php
/**
 * @file
 * Contains \Drupal\simple_sitemap\LinkGenerators\CustomLinkGenerator.
 *
 * Generates custom sitemap paths provided by the user.
 */

namespace Drupal\simple_sitemap;

+0 −4
Original line number Diff line number Diff line
<?php
/**
 * @file
 * Contains \Drupal\simple_sitemap\Form.
 */

namespace Drupal\simple_sitemap;

+0 −5
Original line number Diff line number Diff line
<?php

/**
 * @file
 * Contains \Drupal\simple_sitemap\Form\SimplesitemapCustomLinksForm.
 */

namespace Drupal\simple_sitemap\Form;

use Drupal\Core\Form\ConfigFormBase;
Loading