Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ReflectionClassNewInstancePatch.php

function ReflectionClassNewInstancePatch::apply

Updates newInstance's first argument to make it optional

Parameters

ClassNode $node:

Overrides ClassPatchInterface::apply

File

vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php, line 41

Class

ReflectionClassNewInstancePatch
ReflectionClass::newInstance patch. Makes first argument of newInstance optional, since it works but signature is misleading

Namespace

Prophecy\Doubler\ClassPatch

Code

public function apply(ClassNode $node) {
    $method = $node->getMethod('newInstance');
    \assert($method !== null);
    foreach ($method->getArguments() as $argument) {
        $argument->setDefault(null);
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal