rfc:short-and-inner-classes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
rfc:short-and-inner-classes [2025/03/31 19:36] – remove old changes withinboredomrfc:short-and-inner-classes [2025/04/02 17:39] (current) – add example withinboredom
Line 69: Line 69:
     }     }
 } }
 +
 +new Message('Hello, world!', 'Alice', 'Bob')->Serialize();
 </code> </code>
  
Line 98: Line 100:
     public function __construct(private string $name, private int $age) {}     public function __construct(private string $name, private int $age) {}
 } }
 +
 +new Person\Builder()
 +    ->setName('Alice')
 +    ->setBirthday(new DateTime('2000-01-01'))
 +    ->build();
 </code> </code>
  
Line 132: Line 139:
     }     }
 } }
 +
 +Status::Active->createMessage()->getMessage(); // "Active and Pending"
 </code> </code>
  
Line 164: Line 173:
     }     }
 } }
 +
 +new FileReader()->getBuffer(); // returns a Reader\Buffer object
 +</code>
 +
 +=== Example: Factory Pattern ===
 +
 +<code php>
 +class Triangle extends Polygon {
 +    public final class fromPoints extends Triangle {
 +        public function __construct(Point $point1, Point $point2, Point $point3) {
 +            // ...
 +        }
 +    }
 +    
 +    public final class fromSides extends Triangle {
 +        public function __construct(float $side1, float $side2, float $side3) {
 +            // ...
 +        }
 +    }
 +}
 +
 +new Triangle\fromPoints(new Point(0, 0), new Point(1, 0), new Point(0, 1));
 </code> </code>
  
rfc/short-and-inner-classes.txt · Last modified: 2025/04/02 17:39 by withinboredom