This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.zalando.problem; | |
| import com.google.gag.annotation.remark.Hack; | |
| import com.google.gag.annotation.remark.OhNoYouDidnt; | |
| import org.apiguardian.api.API; | |
| import javax.annotation.Nullable; | |
| import javax.annotation.concurrent.Immutable; | |
| import java.net.URI; | |
| import java.util.Collections; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const TestJSX = | |
| <div> | |
| <p>Hello, this is a test</p> | |
| </div> | |
| const Test2JSX = props => { | |
| return ( | |
| <div> | |
| <p>This is another test</p> | |
| {props.children} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public function generateSvgGradientAction() { | |
| $from_stop = isset($_GET['from']) ? $_GET['from'] : '000000'; | |
| $to_stop = isset($_GET['to']) ? $_GET['to'] : '000000'; | |
| header('Content-type: image/svg+xml; charset=utf-8'); | |
| echo '<?xml version="1.0"?> | |
| '; |