Skip to content
Snippets Groups Projects
Verified Commit d433d966 authored by quietone's avatar quietone
Browse files

Issue #3458426 by mstrelan, catch, smustgrave: Add int return typehints to...

Issue #3458426 by mstrelan, catch, smustgrave: Add int return typehints to protected test helper methods
parent aeef5cd6
No related branches found
No related tags found
18 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!8736Update the Documention As per the Function uses.,!8513Issue #3453786: DefaultSelection should document why values for target_bundles NULL and [] behave as they do,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #293753 passed with warnings
Pipeline: drupal

#293766

    Pipeline: drupal

    #293759

      Pipeline: drupal

      #293757

        Showing
        with 14 additions and 14 deletions
        ......@@ -255,7 +255,7 @@ protected function assertSourceAttributeSame(string $attribute, ?string $value):
        * @return int
        * The size of the bytes transferred.
        */
        protected function getLastPreviewRequestTransferSize() {
        protected function getLastPreviewRequestTransferSize(): int {
        $javascript = <<<JS
        (function(){
        return window.performance
        ......
        ......@@ -159,7 +159,7 @@ protected function assertAnnounceLeaveEditMode(): void {
        * @return int
        * The number of tabbable elements.
        */
        protected function getTabbableElementsCount() {
        protected function getTabbableElementsCount(): int {
        // Mark all tabbable elements.
        $this->getSession()->executeScript("jQuery(window.tabbable.tabbable(document.body)).attr('data-marked', '');");
        // Count all marked elements.
        ......
        ......@@ -119,7 +119,7 @@ protected function setSiteTimezone($timezone) {
        * @return int
        * Unix timestamp.
        */
        protected function getUTCEquivalentOfUserNowAsTimestamp() {
        protected function getUTCEquivalentOfUserNowAsTimestamp(): int {
        $user_now = new DateTimePlus('now', new \DateTimeZone(date_default_timezone_get()));
        $utc_equivalent = new DateTimePlus($user_now->format('Y-m-d H:i:s'), new \DateTimeZone(DateTimeItemInterface::STORAGE_TIMEZONE));
        ......
        ......@@ -83,7 +83,7 @@ public function testInvalidPlaceholders(): void {
        * @return int
        * Number of new watchdog entries.
        */
        private function runCron() {
        private function runCron(): int {
        $connection = Database::getConnection();
        // Get last ID to compare against; log entries get deleted, so we can't
        // reliably add the number of newly created log entries to the current count
        ......
        ......@@ -62,7 +62,7 @@ protected function setUp(): void {
        * @return int
        * Total usage count.
        */
        protected function sumUsages($usage) {
        protected function sumUsages($usage): int {
        $count = 0;
        foreach ($usage as $module) {
        foreach ($module as $entity_type) {
        ......
        ......@@ -214,7 +214,7 @@ protected function checkConfigurableLanguageWeight($state = 'by default') {
        * @return int
        * Maximum weight of configurable languages.
        */
        protected function getHighestConfigurableLanguageWeight() {
        protected function getHighestConfigurableLanguageWeight(): int {
        $max_weight = 0;
        $storage = $this->container->get('entity_type.manager')
        ......
        ......@@ -315,7 +315,7 @@ protected function assertContextualLinkRetainsMouseup(): void {
        * @return int
        * The element position.
        */
        protected function getElementVerticalPosition($css_selector, $position_type) {
        protected function getElementVerticalPosition($css_selector, $position_type): int {
        $this->assertContains($position_type, ['top', 'bottom'], 'Expected position type.');
        return (int) $this->getSession()->evaluateScript("document.querySelector('$css_selector').getBoundingClientRect().$position_type + window.pageYOffset");
        }
        ......
        ......@@ -33,7 +33,7 @@ protected function performStubTest($entity_type_id) {
        * @return int
        * ID of the created entity.
        */
        protected function createEntityStub($entity_type_id) {
        protected function createEntityStub($entity_type_id): int {
        // Create a dummy migration to pass to the destination plugin.
        $definition = [
        'migration_tags' => ['Stub test'],
        ......
        ......@@ -466,7 +466,7 @@ protected function stopServer() {
        * @throws \RuntimeException
        * Thrown when there are no available ports within the range.
        */
        protected function findAvailablePort() {
        protected function findAvailablePort(): int {
        $store = new FlockStore(DrupalFilesystem::getOsTemporaryDirectory());
        $lock_factory = new LockFactory($store);
        ......@@ -524,7 +524,7 @@ protected function checkPortIsAvailable($port): bool {
        *
        * @return int
        */
        protected function getPortNumber() {
        protected function getPortNumber(): int {
        if (empty($this->hostPort)) {
        $this->hostPort = $this->findAvailablePort();
        }
        ......
        ......@@ -112,7 +112,7 @@ public function testGarbageCollection(): void {
        * @return int
        * The number of rows in the test cache bin database table.
        */
        protected function getNumRows() {
        protected function getNumRows(): int {
        $table = 'cache_' . $this->testBin;
        $connection = $this->container->get('database');
        $query = $connection->select($table);
        ......
        ......@@ -288,7 +288,7 @@ public function testUntranslatableFields($sequence, $default_translation_affecte
        * @return int
        * The latest saved revision id.
        */
        protected function doTestEditSequence($sequence) {
        protected function doTestEditSequence($sequence): int {
        $revision_id = NULL;
        foreach ($sequence as $index => $step) {
        $this->stepIndex = $index;
        ......
        ......@@ -452,7 +452,7 @@ protected function assertNoID(string $id, string $html): void {
        * @return int
        * The number of results that are found.
        */
        protected function getXPathResultCount($query, $html) {
        protected function getXPathResultCount($query, $html): int {
        $document = Html::load($html);
        $xpath = new \DOMXPath($document);
        ......
        ......@@ -113,7 +113,7 @@ protected function getTestFiles($type, $size = NULL) {
        *
        * @return int
        */
        protected function compareFiles($file1, $file2) {
        protected function compareFiles($file1, $file2): int {
        $compare_size = filesize($file1->uri) - filesize($file2->uri);
        if ($compare_size) {
        // Sort by file size.
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment