Skip to content

Instantly share code, notes, and snippets.

@lloc
Created March 23, 2018 09:15
Show Gist options
  • Save lloc/c9ff8310c7d4a62b53517c7c502ebd0a to your computer and use it in GitHub Desktop.
Save lloc/c9ff8310c7d4a62b53517c7c502ebd0a to your computer and use it in GitHub Desktop.
<?php
namespace wctrn\realloc;
class Post {
protected $content;
public function set_content( string $content ) {
$this->content = $content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment