|
Revision 2, 0.9 kB
(checked in by fabien, 6 years ago)
|
initial import
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
abstract class sfFeedEnclosure |
|---|
| 19 |
{ |
|---|
| 20 |
private |
|---|
| 21 |
$url, |
|---|
| 22 |
$length, |
|---|
| 23 |
$mimeType; |
|---|
| 24 |
|
|---|
| 25 |
public function setUrl ($url) |
|---|
| 26 |
{ |
|---|
| 27 |
$this->url = $url; |
|---|
| 28 |
} |
|---|
| 29 |
|
|---|
| 30 |
public function getUrl () |
|---|
| 31 |
{ |
|---|
| 32 |
return $this->url; |
|---|
| 33 |
} |
|---|
| 34 |
|
|---|
| 35 |
public function setLength ($length) |
|---|
| 36 |
{ |
|---|
| 37 |
$this->length = $length; |
|---|
| 38 |
} |
|---|
| 39 |
|
|---|
| 40 |
public function getLength () |
|---|
| 41 |
{ |
|---|
| 42 |
return $this->length; |
|---|
| 43 |
} |
|---|
| 44 |
|
|---|
| 45 |
public function setMimeType ($mimeType) |
|---|
| 46 |
{ |
|---|
| 47 |
$this->mimeType = $mimeType; |
|---|
| 48 |
} |
|---|
| 49 |
|
|---|
| 50 |
public function getMimeType () |
|---|
| 51 |
{ |
|---|
| 52 |
return $this->mimeType; |
|---|
| 53 |
} |
|---|
| 54 |
} |
|---|
| 55 |
|
|---|
| 56 |
?> |
|---|