Blame view

vendor/fzaninotto/faker/src/Faker/DefaultGenerator.php 495 Bytes
ad2e91f7   Mihail   move multyparser ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <?php
  
  namespace Faker;
  
  /**
   * This generator returns a default value for all called properties
   * and methods. It works with Faker\Generator\Base->optional().
   */
  class DefaultGenerator
  {
      protected $default = null;
  
      public function __construct($default = null)
      {
          $this->default = $default;
      }
  
      public function __get($attribute)
      {
          return $this->default;
      }
  
      public function __call($method, $attributes)
      {
          return $this->default;
      }
  }