[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/vendor/ocramius/proxy-manager/tests/language-feature-scripts/ -> access-interceptor-denies-private-property-write.phpt (source)

   1  --TEST--
   2  Verifies that generated access interceptors disallow private property direct write
   3  --FILE--
   4  <?php
   5  
   6  require_once  __DIR__ . '/init.php';
   7  
   8  class Kitchen
   9  {
  10      private $sweets;
  11  }
  12  
  13  $factory = new \ProxyManager\Factory\AccessInterceptorValueHolderFactory($configuration);
  14  
  15  $proxy = $factory->createProxy(new Kitchen());
  16  
  17  $proxy->sweets = 'stolen';
  18  ?>
  19  --EXPECTF--
  20  %SFatal error: Cannot access %s property%S in %s on line %d


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1