Project

General

Profile

Download (205 Bytes) Statistics
| Branch: | Tag: | Revision:
1
<?php
2

    
3

    
4
class MediaSize {
5

    
6
  public $width, $height;
7

    
8
  /**
9
   * MediaSize constructor.
10
   */
11
  public function __construct($width, $height) {
12
    $this->width = $width;
13
    $this->height = $height;
14
  }
15

    
16
}
(7-7/14)